@charset "UTF-8";
/* ---------------------------------------------------------------------------
   CSS Custom Properties (fallback defaults — overridden by theme inline)
   --------------------------------------------------------------------------- */
:root {
  --eink-color-primary: #2563eb;
  --eink-color-secondary: #1e40af;
  --eink-color-accent: #f59e0b;
  --eink-color-bg: #ffffff;
  --eink-color-text: #333333;
  --eink-font-heading: 'Inter', sans-serif;
  --eink-font-body: 'Inter', sans-serif;
  --eink-btn-radius: 4px;
  --eink-border-radius: 4px;
  --eink-spacing: 1;
}

/* ---------------------------------------------------------------------------
   Reset & Base
   --------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--eink-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--eink-color-text);
  background: var(--eink-color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* contain full-bleed (100vw) hero/section breakouts */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--eink-color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--eink-font-heading);
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: inherit;
}

/* ---------------------------------------------------------------------------
   Layout
   --------------------------------------------------------------------------- */
.eink_main {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%; /* body is column-flex; auto margins otherwise shrink-to-fit */
}

.eink_layout_full_width .eink_main {
  max-width: none;
}

.eink_layout_full_width .eink_block_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.eink_layout_boxed .eink_main {
  max-width: 1100px;
  padding: 0 20px;
}

/* ---------------------------------------------------------------------------
   Header + Footer chrome are now rendered by the framework (navbar /
   top_info_bar / footer_main) via _includes/render/render_header.asp +
   render_footer.asp, styled by the per-site compiled framework CSS. The old
   eink_ chrome CSS was removed in the chrome cutover. Behaviour-toggle classes
   (eink_header_sticky, etc.) live in partials/_menu.scss (framework bridge).
   --------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------
   404 Page
   --------------------------------------------------------------------------- */
.eink_404 {
  text-align: center;
  padding: 100px 20px;
}

.eink_404 h1 {
  font-size: 72px;
  color: #ddd;
  margin-bottom: 8px;
}

.eink_404 h2 {
  font-size: 24px;
  color: #666;
  margin-bottom: 16px;
}

.eink_404 p {
  color: #999;
}

.eink_lang_switch {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-left: 16px;
}

.eink_lang_switch_item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: var(--eink-border-radius, 4px);
  color: var(--eink-color-text);
  text-decoration: none;
  opacity: 0.6;
}

.eink_lang_switch_item:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.05);
}

.eink_lang_switch_active {
  opacity: 1;
  color: var(--eink-color-primary);
  background: rgba(0, 0, 0, 0.06);
}

.navbar_dark .eink_lang_switch_item {
  color: #fff;
}

/* Per-item highlight ("Specials"-style). Bold/colour are inline; this tidies
   the button look when a background colour is set. */
.eink_nav_highlight {
  text-decoration: none;
  line-height: 1.1;
  transition: filter 0.15s ease;
}

.eink_nav_highlight:hover {
  filter: brightness(0.92);
  text-decoration: none;
}

/* ============================================================================
   Framework chrome bridge — apply the per-site behaviour toggles (057-063) to
   the framework navbar / top_info_bar / footer markup so the runtime controls
   keep working after the chrome cutover. Layered on top of the per-site
   compiled framework CSS.
   ============================================================================ */
/* Sticky / squishy (header carries eink_header_sticky / _squishy; JS toggles _squished) */
.site_header.eink_header_sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site_header.eink_header_squishy {
  transition: padding 0.2s ease;
}

.site_header.eink_header_squishy .navbar_brand img {
  transition: max-height 0.2s ease, margin 0.2s ease;
}

.site_header.eink_header_squished .navbar {
  padding-top: 4px;
  padding-bottom: 4px;
}

.site_header.eink_header_squished .navbar_brand img {
  max-height: 40px;
  margin-top: 0;
  margin-bottom: 0;
}

/* Sticky header: collapse the top info bar once scrolled; the navbar stays pinned. */
.site_header.eink_header_sticky .top_info_bar {
  overflow: hidden;
  max-height: 64px;
  transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.28s ease;
}

.site_header.eink_header_sticky.eink_scrolled .top_info_bar {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top-width: 0;
  border-bottom-width: 0;
}

/* Promo top-bar variant — phone + email (left) + emergency message (right). */
.site_header .top_info_bar_promo .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  flex-wrap: nowrap;
}

.top_info_bar_promo .top_info_contact {
  display: flex;
  gap: 22px;
  flex-wrap: nowrap;
  margin: 0;
  flex: 0 1 auto;
  width: auto;
}

.top_info_bar_promo .top_info_promo {
  flex: 0 1 auto;
}

.top_info_bar_promo .top_info_promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.top_info_bar_promo .top_info_promo i {
  color: #ffd64a;
}

/* Bump the promo-bar contact + message to ~14px to match the live site (the
   per-site compiled default is 12px). Triple-class specificity beats it. */
.site_header .top_info_bar_promo .top_info_contact,
.site_header .top_info_bar_promo .top_info_promo {
  font-size: 0.875rem;
}

.site_header .top_info_bar_promo .top_info_contact .contact_item i {
  font-size: 1rem;
}

@media (max-width: 760px) {
  .top_info_bar_promo .container {
    flex-wrap: wrap;
  }
  .top_info_bar_promo .top_info_promo {
    width: 100%;
    justify-content: center;
  }
}
/* Header width = 1280px (matches the live; applies to top bar + navbar containers). */
.site_header .container {
  max-width: 1280px;
}

/* Navbar action buttons — phone (outline) + Request a Quote (solid). */
.navbar_phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--eink-color-text);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  padding: 9px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.navbar_phone:hover {
  background: rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.navbar_phone i {
  color: var(--eink-color-primary);
}

.navbar_cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  background: var(--eink-color-primary);
  border-radius: 999px;
  padding: 10px 22px;
  text-decoration: none;
  white-space: nowrap;
}

.navbar_cta:hover {
  background: var(--eink-color-secondary);
  color: #fff;
  text-decoration: none;
}

/* Desktop: 3-zone navbar — logo (left) · menu (centered) · action buttons (right). */
@media (min-width: 992px) {
  .site_header .navbar .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
  }
  .site_header .navbar_brand {
    order: 1;
    flex: 0 0 auto;
    margin: 0;
  }
  .site_header .navbar_collapse {
    order: 2;
    flex: 1 1 auto;
    margin: 0;
  }
  .site_header .navbar_collapse .navbar_nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
  }
  .site_header .navbar_actions {
    order: 3;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
  }
}
@media (max-width: 991px) {
  .site_header .navbar_actions {
    display: none;
  }
}
/* Overhanging logo on the navbar brand */
.site_header.eink_header_overhang {
  overflow: visible;
}

.site_header.eink_header_overhang .navbar_brand img {
  max-height: 110px;
  margin-top: -18px;
  margin-bottom: -34px;
}

@media (max-width: 768px) {
  .site_header.eink_header_overhang .navbar_brand img {
    max-height: 64px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
/* Hover + active link states on the navbar */
.site_header.eink_nav_hover_ul .navbar_nav .nav_link:hover {
  text-decoration: underline;
}

.site_header.eink_nav_active_color .navbar_nav .nav_link.active {
  color: var(--eink-color-accent, #ffd400);
}

.site_header.eink_nav_active_bold .navbar_nav .nav_link.active {
  font-weight: 700;
}

.site_header.eink_nav_active_ul .navbar_nav .nav_link.active {
  text-decoration: underline;
}

/* Menu font + size on the navbar links */
.site_header .navbar_nav {
  font-family: var(--eink-font-menu, var(--eink-font-body));
}

.site_header .navbar_nav .nav_link {
  font-size: var(--eink-font-menu-size, 15px);
}

/* Base logo size cap. The framework navbar leaves .navbar_brand img uncapped,
   so a tall source image renders at full natural height (e.g. 207px). Cap it to
   a sane header height; the overhang/squishy state rules above (higher
   specificity) still override this for sites that opt into those behaviours. */
.site_header .navbar_brand img {
  max-height: 52px;
  width: auto;
}

@media (max-width: 768px) {
  .site_header .navbar_brand img {
    max-height: 44px;
  }
}
/* Per-item highlight ("Specials") inside the navbar */
.navbar_nav .nav_link.eink_nav_highlight {
  text-decoration: none;
  line-height: 1.1;
  transition: filter 0.15s ease;
}

.navbar_nav .nav_link.eink_nav_highlight:hover {
  filter: brightness(0.92);
}

/* Navbar dropdowns (the framework navbar is flat in the Playground) */
.navbar_nav .nav_item_has_children {
  position: relative;
}

.navbar_nav .navbar_dropdown {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--eink-border-radius, 4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  display: none;
  z-index: 100;
}

.navbar_nav .nav_item_has_children:hover > .navbar_dropdown {
  display: block;
}

.navbar_nav .navbar_dropdown li {
  margin: 0;
}

/* Fixed dark-on-white colours with !important (WO-40): dark-header skins set
   nav links white via theme vars / higher-specificity rules, which cascaded
   into the white dropdown panel and made it unreadable (site 7 EN + FR). The
   panel background is always white here, so the text colour must not follow
   the theme. */
.navbar_nav .navbar_dropdown li a {
  display: block;
  padding: 8px 16px;
  white-space: nowrap;
  text-decoration: none;
  color: #1F2733 !important;
  text-transform: none;
  letter-spacing: normal;
  font-size: 14px;
}

.navbar_nav .navbar_dropdown li a:hover {
  background: rgba(20, 40, 90, 0.07);
  color: #333399 !important;
}

/* Long secondary-language labels (WO-40): FR menu items overflow the bar at
   the EN sizing - tighten type + padding on any non-EN language. */
html:not([lang=en]) .navbar .navbar_nav .nav_link,
html:not([lang=en]) .navbar_nav .nav_link {
  font-size: 0.82em;
  padding-left: 0.62rem;
  padding-right: 0.62rem;
  letter-spacing: 0;
}

/* Current-day highlight (top bar + footer) — base, in case the framework omits it */
.top_info_day.current_day {
  font-weight: 700;
}

.footer_hours_item.hours_current {
  font-weight: 700;
}

/* Vertical menu (left sidebar) applied to the framework header */
@media (min-width: 769px) {
  body.eink_nav_vertical .site_header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 240px;
    overflow-y: auto;
    z-index: 1000;
  }
  body.eink_nav_vertical .sticky_header_wrapper {
    height: 100%;
  }
  body.eink_nav_vertical .navbar .container {
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    max-width: none;
  }
  body.eink_nav_vertical .navbar_nav {
    flex-direction: column;
    align-items: flex-start;
  }
  body.eink_nav_vertical .eink_main,
  body.eink_nav_vertical .footer_main {
    margin-left: 240px;
  }
}
/* Top info bar wraps on small screens */
@media (max-width: 768px) {
  .top_info_bar .container {
    flex-wrap: wrap;
  }
}
/* Content max-width — all sections cap at 1280px (matches the header). Scoped
   under .eink_page so it beats the framework's responsive .container rules. */
.eink_page .container {
  max-width: 1280px;
}

/* Footer base bar — slim condensed nav beside the copyright (framework already
   provides the divider + the copyright/links row layout). */
.footer_bottom .footer_bottom_links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.footer_bottom .footer_bottom_links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer_bottom .footer_bottom_links a:hover {
  color: #fff;
}

.footer_main_light .footer_bottom .footer_bottom_links a {
  color: rgba(20, 24, 30, 0.6);
}

.footer_main_light .footer_bottom .footer_bottom_links a:hover {
  color: var(--eink-color-primary, #3a9a3e);
}

/* ---------------------------------------------------------------------------
   Rich footer variant (footer_style='rich') — ink background + chainlink
   texture + a green corner glow, with a 4-column marketing layout.
   --------------------------------------------------------------------------- */
.footer_main.footer_rich {
  position: relative;
  overflow: hidden;
  background-color: #0b0e13;
  color: rgba(255, 255, 255, 0.72);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.05) 75%), linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}

.footer_main.footer_rich::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(300px 300px at 100% 0%, rgba(58, 154, 62, 0.2), transparent 65%), radial-gradient(300px 300px at 0% 100%, rgba(74, 144, 217, 0.15), transparent 65%);
}

.footer_main.footer_rich > .container {
  position: relative;
  z-index: 1;
}

.footer_rich_grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
  .footer_rich_grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .footer_rich_grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer_rich_logo {
  max-height: 44px;
  width: auto;
  display: block;
  margin-bottom: 1.1rem;
}

.footer_rich_name {
  color: #fff;
  font-size: 1.4rem;
  margin: 0 0 1.1rem;
}

.footer_rich_about {
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 36ch;
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer_rich_cta.btn {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer_rich_contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer_rich_contact_item {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer_rich_contact_item i {
  width: 16px;
  text-align: center;
  color: var(--eink-color-primary, #3a9a3e);
  margin-right: 7px;
}

.footer_rich_contact_item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer_rich_contact_item a:hover {
  color: #fff;
}

.footer_rich_title {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
}

.footer_rich_col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.footer_rich_col a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer_rich_col a:hover {
  color: #fff;
}

.footer_rich_col ul.footer_rich_arealist {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.footer_rich_arealist li {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 4px 12px;
}

.footer_main.footer_rich .footer_bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.footer_main.footer_rich .footer_copyright {
  color: rgba(255, 255, 255, 0.55);
}

/* Image placeholder — shown when no image has been set */
.eink_img_placeholder {
  background-color: #C7CCD2;
  min-height: 200px;
  border-radius: var(--eink-border-radius);
}

/* Responsive visibility */
@media (max-width: 767px) {
  .eink_hide_mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .eink_hide_desktop {
    display: none !important;
  }
}
/* ---------------------------------------------------------------------------
   Block Base
   --------------------------------------------------------------------------- */
.eink_block {
  padding: calc(40px * var(--eink-spacing)) 20px;
}

.eink_block_inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------------------------------------------------------------------------
   Block: Hero
   --------------------------------------------------------------------------- */
.eink_block_hero {
  position: relative;
  /* Full-bleed: break out of the centered .eink_main container to viewport width. */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.eink_block_hero_overlay {
  position: absolute;
  inset: 0;
  /* Left-weighted gradient for legibility (strength scaled by inline overlay opacity). */
  background: linear-gradient(90deg, rgba(8, 12, 16, 0.92) 0%, rgba(8, 12, 16, 0.55) 45%, rgba(8, 12, 16, 0.15) 100%);
  pointer-events: none;
}

.eink_block_hero_content {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.eink_block_hero_heading {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

@media (max-width: 1100px) {
  .eink_block_hero_heading {
    font-size: 56px;
  }
}
.eink_block_hero_subheading {
  font-size: 20px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.eink_block_hero_cta {
  display: inline-block;
  padding: 15px 40px;
  background: var(--eink-color-primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  transition: background 0.15s;
}

.eink_block_hero_cta:hover {
  background: var(--eink-color-secondary);
  text-decoration: none;
}

@media (max-width: 767px) {
  .eink_block_hero_heading {
    font-size: 40px;
  }
  .eink_block_hero_subheading {
    font-size: 16px;
  }
}
/* ---------------------------------------------------------------------------
   Block: Hero (split) — two-column hero with image card + floating badges.
   --------------------------------------------------------------------------- */
.eink_hero_split {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 90vh;
  display: flex;
  align-items: center; /* fill the screen on load */
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: #fff;
}

/* Full-width section-divider line at the hero's bottom edge (matches live .section-divider). */
.eink_hero_split::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(58, 154, 62, 0.5), rgba(0, 0, 0, 0));
}

.eink_hero_split_overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Exact live-site hero vignette: green glow left, blue glow right, dark base. */
  background: radial-gradient(circle at 18% 30%, rgba(58, 154, 62, 0.35), rgba(0, 0, 0, 0) 55%), radial-gradient(circle at 80% 20%, rgba(74, 144, 217, 0.28), rgba(0, 0, 0, 0) 60%), linear-gradient(135deg, rgba(11, 14, 19, 0.85) 0%, rgba(11, 14, 19, 0.55) 55%, rgba(11, 14, 19, 0.85) 100%);
}

/* Chainlink/diamond texture over the hero (matches the live .bg-chainlink-dark @ 25%). */
.eink_hero_split_overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  --c: rgba(255,255,255,0.06);
  background-image: linear-gradient(135deg, var(--c) 25%, transparent 25%, transparent 75%, var(--c) 75%), linear-gradient(45deg, var(--c) 25%, transparent 25%, transparent 75%, var(--c) 75%);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
  opacity: 0.25;
}

.eink_hero_split_inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 980px) {
  .eink_hero_split_inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 20px;
  }
}
.eink_hero_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.eink_hero_eyebrow i {
  color: var(--eink-color-primary);
}

.eink_hero_split_heading {
  font-size: 74px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.eink_hero_accent {
  background: linear-gradient(90deg, #5bd07a, #2fb8c0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (max-width: 980px) {
  .eink_hero_split_heading {
    font-size: 44px;
  }
}
.eink_hero_split_sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin: 0 0 28px;
}

.eink_hero_split_ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.eink_hero_cta_primary, .eink_hero_cta_ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
}

.eink_hero_cta_primary {
  background: var(--eink-color-primary);
  color: #fff;
}

.eink_hero_cta_primary:hover {
  background: var(--eink-color-secondary);
  color: #fff;
  text-decoration: none;
}

.eink_hero_cta_ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.eink_hero_cta_ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  text-decoration: none;
}

.eink_hero_stats {
  position: relative;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 30px;
}

/* Divider line above the stat row (column-width, green fading to transparent). */
.eink_hero_stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 560px;
  height: 1px;
  background: linear-gradient(90deg, rgba(58, 154, 62, 0.5), rgba(0, 0, 0, 0));
}

.eink_hero_stat {
  display: flex;
  flex-direction: column;
}

.eink_hero_stat_val {
  font-size: 26px;
  font-weight: 800;
  color: #7fcf85;
  line-height: 1.1;
}

.eink_hero_stat_lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 3px;
  max-width: 150px;
}

.eink_hero_split_media {
  position: relative;
}

.eink_hero_media_img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 980px) {
  .eink_hero_media_img {
    height: 340px;
  }
}
.eink_hero_media_badge {
  position: absolute;
  top: -22px;
  left: -22px;
  z-index: 2;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: linear-gradient(135deg, #34c759, #2aa9d6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.eink_hero_float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(13, 17, 23, 0.85);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  max-width: 240px;
}

.eink_hero_float_txt strong {
  display: block;
  font-size: 14px;
}

.eink_hero_float_txt span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.eink_hero_float_a {
  bottom: 26px;
  left: -18px;
}

.eink_hero_float_b {
  bottom: -22px;
  right: -10px;
  background: #fff;
  color: #14181f;
}

.eink_hero_float_b .eink_hero_float_txt span {
  color: rgba(0, 0, 0, 0.55);
}

.eink_hero_float_check, .eink_hero_float_bolt {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.eink_hero_float_check {
  background: var(--eink-color-primary);
  color: #fff;
}

.eink_hero_float_bolt {
  background: rgba(52, 199, 89, 0.16);
  color: var(--eink-color-primary);
}

@media (max-width: 980px) {
  .eink_hero_float_a {
    left: 8px;
  }
  .eink_hero_float_b {
    right: 8px;
    bottom: -16px;
  }
}
/* Card icon chip — fw_cards `icon` field holds a FontAwesome class. Theme-aware. */
.eink_card_icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--eink-color-primary);
  color: #fff;
  font-size: 20px;
  margin-bottom: 14px;
}

/* fw_cards "icon-left" variant (live value-prop style): white card, horizontal
   layout (light-green icon badge left, text right), rounded, subtle border + shadow. */
.eink_block.eink_cards_iconleft .card {
  height: 100%;
  border-radius: 24px;
  border: 1px solid #e6e8ea;
  box-shadow: 0 1px 3px rgba(15, 23, 32, 0.06);
  background: #fff;
}

.eink_cards_iconleft .card_body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  text-align: left;
}

.eink_cards_iconleft .eink_card_icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin: 0;
  background: #eff9ef;
  color: #2e7e32;
  font-size: 18px;
  box-shadow: inset 0 0 0 1px rgba(58, 154, 62, 0.22);
}

.eink_cards_iconleft .eink_card_textwrap {
  min-width: 0;
}

.eink_cards_iconleft .card_title {
  font-size: 17px;
  margin: 2px 0 6px;
}

.eink_cards_iconleft .card_text {
  margin: 0;
}

/* fw_cards "stat" variant — big number + label, centered, no card chrome (stats bar). */
.eink_cards_stat .card {
  background: transparent;
  border: 0;
  box-shadow: none;
  height: 100%;
}

.eink_cards_stat .card_body {
  display: block;
  text-align: center;
  padding: 8px 12px;
}

.eink_cards_stat .eink_card_textwrap {
  display: block;
}

.eink_cards_stat .card_title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  color: var(--eink-color-primary, #3a9a3e);
}

.eink_cards_stat .card_text {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(15, 23, 32, 0.6);
  margin: 0;
}

/* Brand-coloured top info bar (matches a coloured-header brand look). Per-site
   primary, so each site's bar takes its own brand colour. Scoped under
   .site_header to win over the framework's base .top_info_bar (page.css loads
   before the per-site framework css). */
.site_header .top_info_bar {
  background: var(--eink-color-primary);
  color: #fff;
}

.site_header .top_info_bar a, .site_header .top_info_bar a:hover {
  color: #fff;
}

.site_header .top_info_bar a:hover {
  opacity: 0.85;
}

.site_header .top_info_bar .contact_item i {
  color: rgba(255, 255, 255, 0.85);
}

/* Section header — eyebrow pill + large heading + intro (live-site section style). */
.eink_section_head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.eink_eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eink-color-primary);
  background: rgba(0, 0, 0, 0.045);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.eink_section_heading {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.eink_section_intro {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 680px;
}

@media (max-width: 767px) {
  .eink_section_heading {
    font-size: 30px;
  }
}
/* ---------------------------------------------------------------------------
   Block: Heading + Text
   --------------------------------------------------------------------------- */
.eink_block_heading_text_heading {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

/* Card + button radii to match the live (cards 16px, buttons rounded). Scoped
   under .eink_block to beat the framework's lower-radius .card/.btn. */
.eink_block .card {
  border-radius: 16px;
}

.eink_block .btn {
  border-radius: 24px;
}

/* Full-bleed section background variants — the live alternates white / concrete
   / ink-900. Applied per-block via the CSSClass field (eink_bg_concrete / _dark). */
.eink_bg_concrete, .eink_bg_dark, .eink_bg_pattern, .eink_bg_soft {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-top: 76px;
  padding-bottom: 76px;
}

.eink_bg_concrete {
  background: #ece9e1;
}

/* Cool soft section background (LotRanger's alternating "lr-section--soft"). */
.eink_bg_soft {
  background: #eef2fb;
}

/* Zero-height in-page anchor target (block "anchor" setting) — scroll-margin
   keeps the section clear of the sticky header when jumped to via /#name. */
.eink_anchor {
  display: block;
  height: 0;
  scroll-margin-top: 96px;
}

/* Full-bleed patterned background (double-cross grey SVG tile over a light base). */
.eink_bg_pattern {
  background-color: #ffffff;
  background-image: url("/assets/images/background/double_cross_grey.svg");
  background-repeat: repeat;
}

/* Reusable chainlink / diamond texture overlay — the exact shape used on the hero
   overlay. Pair with a dark background, e.g. class="eink_bg_dark eink_bg_chainlink". */
.eink_bg_chainlink {
  position: relative;
  overflow: hidden;
}

.eink_bg_chainlink::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  --c: rgba(255, 255, 255, 0.06);
  background-image: linear-gradient(135deg, var(--c) 25%, transparent 25%, transparent 75%, var(--c) 75%), linear-gradient(45deg, var(--c) 25%, transparent 25%, transparent 75%, var(--c) 75%);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
  opacity: 0.25;
}

.eink_bg_chainlink > .container,
.eink_bg_chainlink > .eink_block_inner {
  position: relative;
  z-index: 1;
}

/* fw_cards SPLIT layout (Applications): text + photo (left) · icon-panel grid (right). */
.eink_fw_split_grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .eink_fw_split_grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
.eink_fw_split_heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 16px 0 14px;
}

.eink_fw_split_intro {
  color: rgba(15, 23, 32, 0.6);
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 28px;
}

.eink_fw_split_photo {
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(15, 23, 32, 0.16);
}

.eink_fw_split_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eink_fw_split_right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .eink_fw_split_right {
    grid-template-columns: 1fr;
  }
}
.eink_fw_panel {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 32, 0.08);
  background: #fff;
  padding: 22px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eink_fw_panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 32, 0.14);
}

.eink_fw_panel_icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 154, 62, 0.12);
  color: var(--eink-color-primary);
  font-size: 17px;
}

.eink_fw_panel_title {
  font-size: 17px;
  font-weight: 700;
  margin: 16px 0 6px;
}

.eink_fw_panel_text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15, 23, 32, 0.6);
  margin: 0;
}

.eink_bg_dark {
  background: #0b0e13;
  color: #e7e9ec;
}

/* Consecutive dark sections keep their own full padding — each dark band (process,
   service area, testimonials, CTA) is now a single self-contained block. */
.eink_bg_dark .eink_section_heading,
.eink_bg_dark .eink_block_heading_text_heading,
.eink_bg_dark .eink_step_title,
.eink_bg_dark .eink_testimonial_card_quote,
.eink_bg_dark .eink_testimonial_card_author {
  color: #fff;
}

.eink_bg_dark .eink_section_intro,
.eink_bg_dark .eink_block_heading_text_body,
.eink_bg_dark .eink_step_body,
.eink_bg_dark .eink_testimonial_card_role {
  color: rgba(255, 255, 255, 0.72);
}

.eink_bg_dark .eink_eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.eink_bg_dark .eink_testimonial_card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 26px;
}

.eink_bg_dark .eink_testimonial_card_author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
  padding-top: 16px;
}

.eink_bg_dark .eink_testimonial_card_mark {
  color: rgba(255, 255, 255, 0.09);
}

/* Process steps as glassy cards on the dark "how it works" section (matches live). */
.eink_bg_dark .eink_step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  height: 100%;
}

/* fw_cards SPLIT — Google-map embed in the left column (Service area). */
.eink_fw_split_map {
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(15, 23, 32, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.eink_fw_split_map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* fw_cards SPLIT — full-section background photo + diagonal ink->sky tint. */
.eink_fw_split {
  position: relative;
}

.eink_fw_split_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}

.eink_fw_split_bgtint {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #0b0e13 0%, rgba(11, 14, 19, 0.85) 55%, rgba(12, 74, 110, 0.35) 100%);
}

.eink_fw_split > .container {
  position: relative;
  z-index: 1;
}

/* "Check coverage" CTA in the left column, below the heading/intro. */
.eink_fw_split_cta {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
}

/* CTA split — reuse the section photo background (a touch more visible). */
.eink_cta_split {
  position: relative;
}

.eink_cta_split > .container {
  position: relative;
  z-index: 1;
}

.eink_cta_split .eink_fw_split_bg {
  opacity: 0.35;
}

/* heading_text HERO variant (photo_bg set) — large, LEFT-aligned photo hero with
   the green/blue vignette (matches the home hero, keeps the photo visible). */
.eink_heading_hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
}

/* Zero the base .eink_block side padding so the inner (1280 + 0.75rem) lines up
   with the .container-based sections below. */
.eink_block.eink_heading_hero {
  padding-left: 0;
  padding-right: 0;
}

.eink_heading_hero .eink_fw_split_bg {
  opacity: 0.62;
}

.eink_heading_hero .eink_fw_split_bgtint {
  background: radial-gradient(circle at 18% 30%, rgba(58, 154, 62, 0.32), rgba(0, 0, 0, 0) 55%), radial-gradient(circle at 80% 20%, rgba(74, 144, 217, 0.26), rgba(0, 0, 0, 0) 60%), linear-gradient(135deg, rgba(11, 14, 19, 0.8) 0%, rgba(11, 14, 19, 0.5) 55%, rgba(11, 14, 19, 0.8) 100%);
}

.eink_heading_hero .eink_block_inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

.eink_heading_hero .eink_block_heading_text_heading {
  font-size: 56px;
  line-height: 1.08;
  margin: 0 0 18px;
  max-width: 760px;
}

.eink_heading_hero .eink_block_heading_text_body {
  font-size: 19px;
  line-height: 1.6;
  max-width: 660px;
}

.eink_heading_hero .eink_eyebrow {
  margin-bottom: 18px;
}

@media (max-width: 700px) {
  .eink_heading_hero {
    min-height: 46vh;
  }
  .eink_heading_hero .eink_block_heading_text_heading {
    font-size: 36px;
  }
}
.eink_heading_hero_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 28px;
}

.eink_heading_hero .btn_outline_primary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.eink_heading_hero .btn_outline_primary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Breadcrumb trail (interior-page hero) — sits on its own line above the eyebrow. */
.eink_breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.eink_breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.eink_breadcrumb a:hover {
  color: #fff;
}

.eink_breadcrumb span[aria-hidden] {
  color: rgba(255, 255, 255, 0.4);
}

.eink_breadcrumb_current {
  color: #fff;
  font-weight: 600;
}

/* fw_cards SPLIT — compact "chip" grid variant (Service-area municipalities). */
.eink_fw_chipgrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: start;
}

@media (max-width: 560px) {
  .eink_fw_chipgrid {
    grid-template-columns: 1fr 1fr;
  }
}
.eink_fw_chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 32, 0.08);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.eink_fw_chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 32, 0.14);
}

.eink_fw_chip_icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 154, 62, 0.12);
  color: var(--eink-color-primary);
  font-size: 13px;
}

.eink_fw_chip_label {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}

.eink_fw_chip_title {
  font-size: 15px;
  font-weight: 700;
}

.eink_fw_chip_sub {
  font-size: 12px;
  color: rgba(15, 23, 32, 0.55);
}

/* Dark-section variants for the split (Service area on ink-900). */
.eink_bg_dark .eink_fw_split_heading {
  color: #fff;
}

.eink_bg_dark .eink_fw_split_intro {
  color: rgba(255, 255, 255, 0.72);
}

.eink_bg_dark .eink_fw_chip {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.eink_bg_dark .eink_fw_chip:hover {
  border-color: rgba(58, 154, 62, 0.5);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.eink_bg_dark .eink_fw_chip_title {
  color: #fff;
}

.eink_bg_dark .eink_fw_chip_sub {
  color: rgba(255, 255, 255, 0.5);
}

.eink_bg_dark .eink_fw_chip_icon {
  background: rgba(58, 154, 62, 0.22);
  color: #7fcf85;
}

.eink_bg_dark .eink_fw_panel {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.eink_bg_dark .eink_fw_panel_title {
  color: #fff;
}

.eink_bg_dark .eink_fw_panel_text {
  color: rgba(255, 255, 255, 0.6);
}

.eink_bg_dark .eink_fw_panel_icon {
  background: rgba(58, 154, 62, 0.22);
  color: #7fcf85;
}

/* CTA split (Need a perimeter…): copy left, stacked actions right. */
.eink_cta_split_grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 860px) {
  .eink_cta_split_grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
.eink_cta_split_heading {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 16px 0 14px;
}

.eink_cta_split_intro {
  font-size: 17px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

.eink_cta_split_actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

@media (min-width: 861px) {
  .eink_cta_split_actions {
    align-items: flex-end;
  }
}
.eink_cta_split_actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.eink_bg_dark .eink_cta_split_heading {
  color: #fff;
}

.eink_bg_dark .eink_cta_split_intro {
  color: rgba(255, 255, 255, 0.72);
}

.eink_bg_dark .eink_cta_split_actions .btn_outline_primary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.eink_bg_dark .eink_cta_split_actions .btn_outline_primary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.eink_block_heading_text_body {
  font-size: 16px;
  line-height: 1.7;
}

/* ---------------------------------------------------------------------------
   Block: Text + Image / Image + Text
   --------------------------------------------------------------------------- */
.eink_block_text_image_grid,
.eink_block_image_text_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.eink_block_text_image_text_col h2,
.eink_block_image_text_text_col h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

@media (max-width: 767px) {
  .eink_block_text_image_text_col h2,
  .eink_block_image_text_text_col h2 {
    font-size: 28px;
  }
}
.eink_block_text_image_text_col p,
.eink_block_image_text_text_col p {
  font-size: 16px;
  line-height: 1.7;
}

.eink_block_text_image_img,
.eink_block_image_text_img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(15, 23, 32, 0.14);
}

.eink_block_text_image_text_col .eink_eyebrow {
  margin-bottom: 14px;
}

/* Optional inventory / feature check-list rendered beside the photo
   (e.g. the "CSA-spec hardware, ready to roll" section). */
.eink_ti_checklist {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 28px;
}

.eink_ti_checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.45;
  font-weight: 600;
  color: #1b2430;
}

.eink_ti_check {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(58, 154, 62, 0.12);
  color: #2e7e32;
  font-size: 12px;
  margin-top: 1px;
}

/* Dark variant — white heading/body + brighter check chips. */
.eink_bg_dark .eink_block_text_image_text_col h2,
.eink_bg_dark .eink_block_image_text_text_col h2 {
  color: #fff;
}

.eink_bg_dark .eink_block_text_image_text_col p,
.eink_bg_dark .eink_block_image_text_text_col p {
  color: rgba(255, 255, 255, 0.72);
}

.eink_bg_dark .eink_ti_checklist li {
  color: #eef2f1;
}

.eink_bg_dark .eink_ti_check {
  background: rgba(58, 154, 62, 0.22);
  color: #7fcf85;
}

@media (max-width: 767px) {
  .eink_block_text_image_grid,
  .eink_block_image_text_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .eink_block_image_text_img_col {
    order: -1;
  }
  .eink_ti_checklist {
    grid-template-columns: 1fr;
  }
}
/* ---------------------------------------------------------------------------
   Block: Contact form — SPLIT layout (form card left, info sidebar right)
   --------------------------------------------------------------------------- */
.eink_contact_split {
  padding-top: 76px;
  padding-bottom: 76px;
}

.eink_contact_grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.eink_contact_main .eink_eyebrow {
  margin-bottom: 14px;
}

.eink_contact_heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}

.eink_contact_intro {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(15, 23, 32, 0.62);
  margin: 0 0 24px;
  max-width: 560px;
}

/* The form itself becomes a white card with a 2-column field grid. */
.eink_form.eink_contact_card {
  max-width: none;
  margin: 0;
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(15, 23, 32, 0.1);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.eink_contact_card .eink_form_section,
.eink_contact_card .eink_form_actions,
.eink_contact_card .eink_form_status,
.eink_contact_card .eink_form_field_check,
.eink_contact_card .eink_form_field:has(textarea) {
  grid-column: 1/-1;
}

.eink_contact_card .eink_form_field {
  margin-bottom: 0;
}

.eink_contact_card .eink_form_actions {
  margin-top: 6px;
  text-align: left;
}

.eink_contact_card .eink_form_actions .btn {
  width: 100%;
}

.eink_contact_note {
  font-size: 13.5px;
  color: rgba(15, 23, 32, 0.55);
  margin: 14px 2px 0;
}

.eink_contact_note a {
  color: #2e7e32;
  font-weight: 600;
}

/* Right sidebar: stacked contact-method cards. */
.eink_contact_side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eink_contact_method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 6px 18px rgba(15, 23, 32, 0.05);
  transition: border-color 0.15s ease;
}

.eink_contact_method:hover {
  border-color: rgba(58, 154, 62, 0.45);
}

.eink_contact_method_icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(58, 154, 62, 0.12);
  color: #2e7e32;
  font-size: 17px;
}

.eink_contact_method_body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.eink_contact_method_title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(15, 23, 32, 0.5);
}

.eink_contact_method_value {
  font-size: 17px;
  font-weight: 700;
  color: #14202b;
  text-decoration: none;
  word-break: break-word;
}

a.eink_contact_method_value:hover {
  color: #2e7e32;
}

.eink_contact_method_note {
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(15, 23, 32, 0.6);
}

.eink_contact_method_note a {
  color: #2e7e32;
  font-weight: 600;
}

.eink_contact_method_area .eink_contact_method_value {
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .eink_contact_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 560px) {
  .eink_form.eink_contact_card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .eink_contact_heading {
    font-size: 28px;
  }
}
/* ---------------------------------------------------------------------------
   Block: Rich Text
   --------------------------------------------------------------------------- */
.eink_block_rich_text_content {
  font-size: 16px;
  line-height: 1.7;
}

.eink_block_rich_text_content h1,
.eink_block_rich_text_content h2,
.eink_block_rich_text_content h3 {
  margin-top: 1.2em;
}

.eink_block_rich_text_content ul,
.eink_block_rich_text_content ol {
  padding-left: 1.5em;
}

.eink_block_rich_text_content img {
  border-radius: var(--eink-border-radius);
  margin: 1em 0;
}

/* ---------------------------------------------------------------------------
   Block: CTA Buttons
   --------------------------------------------------------------------------- */
.eink_block_cta_buttons_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eink_block_cta_buttons_wrap.align_center {
  justify-content: center;
}

.eink_block_cta_buttons_wrap.align_right {
  justify-content: flex-end;
}

.eink_block_cta_buttons_wrap.layout_vertical {
  flex-direction: column;
  align-items: center;
}

/* ---------------------------------------------------------------------------
   Block: Divider
   --------------------------------------------------------------------------- */
.eink_block_divider {
  padding: 0;
}

.eink_block_divider_line {
  border: none;
  margin: 0 auto;
}

.eink_block_divider_line.style_line {
  border-top: 1px solid #e0e0e0;
}

.eink_block_divider_line.style_dashed {
  border-top: 2px dashed #e0e0e0;
}

.eink_block_divider_line.style_dotted {
  border-top: 2px dotted #e0e0e0;
}

.eink_block_divider_line.style_space {
  border: none;
}

/* ---------------------------------------------------------------------------
   Block: Testimonial Cards
   --------------------------------------------------------------------------- */
.eink_block_testimonials_grid {
  display: grid;
  gap: 24px;
}

.eink_testimonial_card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--eink-border-radius);
  padding: 24px;
}

.eink_testimonial_card > *:not(.eink_testimonial_card_mark) {
  position: relative;
  z-index: 1;
}

/* Big decorative quote mark (watermark, like the process ghost numbers). */
.eink_testimonial_card_mark {
  position: absolute;
  top: 4px;
  right: 20px;
  z-index: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 92px;
  line-height: 1;
  color: rgba(15, 23, 32, 0.08);
  pointer-events: none;
}

.eink_testimonial_card_stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 12px;
}

.eink_testimonial_card_quote {
  font-size: 15px;
  line-height: 1.6;
  font-style: normal;
  color: #555;
  margin-bottom: 16px;
}

/* margin-top:auto pins the Name/Role footer to the bottom of every card. */
.eink_testimonial_card_author {
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}

.eink_testimonial_card_role {
  font-size: 13px;
  color: #888;
}

/* Testimonials dark band — chainlink texture (via eink_bg_chainlink) + top glow. */
.eink_block_testimonials.eink_bg_dark {
  position: relative;
  overflow: hidden;
}

.eink_block_testimonials.eink_bg_dark::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(50% 42% at 50% 0%, rgba(58, 154, 62, 0.16), transparent 70%);
}

.eink_block_testimonials.eink_bg_dark .eink_block_inner {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------------------------
   Block: FAQ Accordion
   --------------------------------------------------------------------------- */
.eink_block_faq_list {
  max-width: 800px;
}

.eink_faq_item {
  border: 1px solid #e5e7eb;
  border-radius: var(--eink-border-radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.eink_faq_item summary {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eink_faq_item summary::-webkit-details-marker {
  display: none;
}

.eink_faq_item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  color: #888;
  transition: transform 0.15s;
}

.eink_faq_item[open] summary::after {
  content: "−";
}

.eink_faq_item_answer {
  padding: 0 18px 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.eink_block_faq_list.style_minimal .eink_faq_item {
  border: none;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0;
}

.eink_block_faq_list.style_cards .eink_faq_item {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: none;
}

/* ---------------------------------------------------------------------------
   Block: Gallery
   --------------------------------------------------------------------------- */
/* Gallery category filter tabs (data-driven; JS toggles is-active + item display). */
.eink_gallery_filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.eink_gallery_filter {
  border: 1px solid rgba(15, 23, 32, 0.15);
  background: #fff;
  color: rgba(15, 23, 32, 0.7);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.eink_gallery_filter:hover {
  border-color: var(--eink-color-primary, #3a9a3e);
  color: var(--eink-color-primary, #3a9a3e);
}

.eink_gallery_filter.is-active {
  background: var(--eink-color-primary, #3a9a3e);
  border-color: var(--eink-color-primary, #3a9a3e);
  color: #fff;
}

.eink_block_gallery_grid {
  display: grid;
  gap: 8px;
}

.eink_block_gallery_item {
  overflow: hidden;
  border-radius: var(--eink-border-radius);
}

.eink_block_gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.2s;
}

.eink_block_gallery_item:hover img {
  transform: scale(1.03);
}

.eink_block_gallery_caption {
  font-size: 12px;
  color: #888;
  text-align: center;
  padding: 4px;
}

/* ---------------------------------------------------------------------------
   Block: Video Embed
   --------------------------------------------------------------------------- */
.eink_block_video_wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 default */
  height: 0;
  overflow: hidden;
  border-radius: var(--eink-border-radius);
}

.eink_block_video_wrap.ratio_4_3 {
  padding-bottom: 75%;
}

.eink_block_video_wrap.ratio_1_1 {
  padding-bottom: 100%;
}

.eink_block_video_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.eink_block_video_title {
  font-size: 14px;
  color: #888;
  text-align: center;
  margin-top: 8px;
}

/* ---------------------------------------------------------------------------
   Block: Logo Strip
   --------------------------------------------------------------------------- */
.eink_block_logos_strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.eink_block_logos_strip img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.eink_block_logos_strip.grayscale img {
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.2s, opacity 0.2s;
}

.eink_block_logos_strip.grayscale img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ---------------------------------------------------------------------------
   Block: Announcement Bar
   --------------------------------------------------------------------------- */
.eink_block_announcement {
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.eink_block_announcement a {
  color: inherit;
  text-decoration: underline;
  margin-left: 8px;
}

.eink_block_announcement_dismiss {
  background: none;
  border: none;
  color: inherit;
  opacity: 0.6;
  cursor: pointer;
  font-size: 16px;
  margin-left: 12px;
  vertical-align: middle;
}

.eink_block_announcement_dismiss:hover {
  opacity: 1;
}

/* ---------------------------------------------------------------------------
   Block: Social Links
   --------------------------------------------------------------------------- */
.eink_block_social_wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.eink_block_social_wrap.align_center {
  justify-content: center;
}

.eink_block_social_wrap.align_right {
  justify-content: flex-end;
}

.eink_block_social_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f6;
  color: var(--eink-color-text);
  font-size: 18px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.eink_block_social_link:hover {
  background: var(--eink-color-primary);
  color: #fff;
  text-decoration: none;
}

.eink_block_social_wrap.style_buttons .eink_block_social_link {
  border-radius: var(--eink-btn-radius);
  width: auto;
  padding: 8px 16px;
  font-size: 14px;
  gap: 6px;
}

.eink_block_social_wrap.style_pills .eink_block_social_link {
  border-radius: 20px;
  width: auto;
  padding: 8px 16px;
  font-size: 14px;
  gap: 6px;
}

.eink_block_social_link.size_small {
  width: 32px;
  height: 32px;
  font-size: 14px;
}

.eink_block_social_link.size_large {
  width: 48px;
  height: 48px;
  font-size: 22px;
}

/* ---------------------------------------------------------------------------
   Block: Promo Banner
   --------------------------------------------------------------------------- */
.eink_block_promo_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.eink_block_promo_inner.layout_full_width {
  grid-template-columns: 1fr;
  text-align: center;
}

.eink_block_promo_inner.layout_centered {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.eink_block_promo_heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.eink_block_promo_body {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.eink_block_promo_img {
  border-radius: var(--eink-border-radius);
  width: 100%;
}

@media (max-width: 767px) {
  .eink_block_promo_inner {
    grid-template-columns: 1fr;
  }
}
/* ---------------------------------------------------------------------------
   Block: Trust Badges
   --------------------------------------------------------------------------- */
.eink_block_badges_grid {
  display: grid;
  gap: 20px;
  text-align: center;
}

.eink_block_badges_item img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 8px;
}

.eink_block_badges_label {
  font-size: 13px;
  font-weight: 500;
  color: #555;
}

/* ---------------------------------------------------------------------------
   Block: HTML Embed
   --------------------------------------------------------------------------- */
.eink_block_html_embed_content {
  overflow: hidden;
}

/* ---------------------------------------------------------------------------
   Block: Featured Vehicles (wrapper / heading / empty state)
   Card + grid live in _vehicle_card.scss.
   --------------------------------------------------------------------------- */
.eink_block_featured_vehicles {
  padding: calc(40px * var(--eink-spacing)) 0;
}

.eink_block_featured_vehicles_heading {
  font-family: var(--eink-font-heading);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 calc(24px * var(--eink-spacing));
  color: var(--eink-color-text);
}

.eink_block_featured_vehicles_empty {
  text-align: center;
  color: #999;
  font-size: 15px;
  padding: 40px 20px;
}

/* ---------------------------------------------------------------------------
   Block: Inventory Search (wrapper)
   Filters / pagination / states live in _inventory.scss.
   --------------------------------------------------------------------------- */
.eink_block_inventory_search {
  padding: calc(40px * var(--eink-spacing)) 0;
}

/* ---------------------------------------------------------------------------
   Block: Map (Google Maps embed). Default is contained (max-width inner);
   the full-width variant is a full-bleed horizontal strip for page bottoms.
   --------------------------------------------------------------------------- */
.eink_block_map .eink_map_embed {
  width: 100%;
  border-radius: var(--eink-border-radius, 8px);
  overflow: hidden;
}

.eink_block_map .eink_map_embed iframe {
  display: block;
}

.eink_block_map_full {
  padding: 0;
}

.eink_block_map_full .eink_block_inner {
  max-width: none;
  margin: 0;
}

.eink_block_map_full .eink_map_embed {
  border-radius: 0;
}

/* ---------------------------------------------------------------------------
   Block: Process Steps — reusable numbered "how it works" flow.
   --------------------------------------------------------------------------- */
.eink_block_process_steps {
  padding: calc(48px * var(--eink-spacing, 1)) 0;
}

.eink_step {
  text-align: center;
  padding: 8px 12px;
}

.eink_step_num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-weight: 800;
  font-size: 20px;
  background: var(--eink-color-primary, #3a9a3e);
  color: #fff;
}

.eink_step_icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #3a9a3e, #4a90d9);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(58, 154, 62, 0.35);
}

.eink_step_title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
}

.eink_step_body {
  font-size: 14px;
  color: #5b6470;
  margin: 0;
}

/* Scroll-reveal (staggered) for process steps — armed only when JS runs, so the
   cards stay visible with no JS. The reveal transform lives on the grid cell so
   it never collides with the card's own hover-lift transform. */
.eink_block_process_steps.eink_reveal_armed .columns {
  opacity: 0;
  transform: translateY(26px);
}

.eink_block_process_steps.eink_reveal_go .columns {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .eink_block_process_steps .columns {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* Ghost step number — decorative watermark, shown only on the dark variant. */
.eink_step_ghost {
  display: none;
}

/* ---------------------------------------------------------------------------
   Rich dark "How it works" — lime/sky glow blobs over the reusable chainlink
   texture (eink_bg_chainlink), a solid gradient "swoop" threaded behind the
   frosted-glass panels, gradient icon badges, and a ghost number.
   --------------------------------------------------------------------------- */
.eink_block_process_steps.eink_bg_dark {
  position: relative;
  overflow: hidden;
}

/* Soft lime (top) + sky (bottom-right) glow blobs, gently pulsing. */
.eink_block_process_steps.eink_bg_dark::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(320px 320px at 33% 2%, rgba(58, 154, 62, 0.18), transparent 70%), radial-gradient(340px 340px at 90% 100%, rgba(74, 144, 217, 0.13), transparent 70%);
  animation: eink_proc_glow 11s ease-in-out infinite alternate;
}

.eink_block_process_steps.eink_bg_dark .container {
  position: relative;
  z-index: 1;
}

@keyframes eink_proc_glow {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 1;
  }
}
/* Dotted gradient "swoop" threaded behind the panels (desktop only). */
.eink_proc_swoop {
  display: none;
}

@media (min-width: 992px) {
  .eink_block_process_steps.eink_bg_dark .row {
    position: relative;
  }
  .eink_block_process_steps.eink_bg_dark .eink_proc_swoop {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 22px;
    width: 100%;
    height: auto;
    z-index: 0;
    overflow: visible;
    pointer-events: none;
  }
  .eink_block_process_steps.eink_bg_dark .columns {
    position: relative;
    z-index: 1;
  }
}
.eink_block_process_steps.eink_bg_dark .eink_step {
  position: relative;
  z-index: 1;
  text-align: left;
  height: 100%;
  padding: 28px 24px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.eink_block_process_steps.eink_bg_dark .eink_step:hover {
  transform: translateY(-6px);
  border-color: rgba(127, 207, 133, 0.5);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(127, 207, 133, 0.16);
}

.eink_block_process_steps.eink_bg_dark .eink_step_icon {
  margin: 0 0 16px;
}

.eink_block_process_steps.eink_bg_dark .eink_step_num {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #3a9a3e, #2f8033);
  box-shadow: 0 6px 18px rgba(58, 154, 62, 0.4);
}

.eink_block_process_steps.eink_bg_dark .eink_step_title,
.eink_block_process_steps.eink_bg_dark .eink_step_body {
  position: relative;
  z-index: 1;
}

.eink_block_process_steps.eink_bg_dark .eink_step_ghost {
  display: block;
  position: absolute;
  top: 6px;
  right: 14px;
  z-index: 0;
  font-size: 92px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

/* ---------------------------------------------------------------------------
   Block: Services Grid (data-bound) — image-overlay cards with hover lift.
   --------------------------------------------------------------------------- */
.eink_block_services {
  padding: calc(48px * var(--eink-spacing, 1)) 0;
}

.eink_svc_grid {
  align-items: stretch;
}

.eink_svc_card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 32, 0.08);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.eink_svc_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 23, 32, 0.16);
  text-decoration: none;
}

.eink_svc_media {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: #e9edf0;
}

.eink_svc_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.eink_svc_card:hover .eink_svc_img {
  transform: scale(1.04);
}

.eink_svc_grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 14, 19, 0.72), rgba(11, 14, 19, 0.12) 45%, rgba(0, 0, 0, 0));
}

.eink_svc_badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--eink-color-primary);
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.eink_svc_titlerow {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.eink_svc_title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.eink_svc_ext {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.eink_svc_body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.eink_svc_blurb {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15, 23, 32, 0.62);
  margin: 0;
}

.eink_svc_explore {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--eink-color-primary);
}

.eink_svc_explore i {
  transition: transform 0.2s ease;
}

.eink_svc_card:hover .eink_svc_explore i {
  transform: translateX(3px);
}

/* Full-bleed mesh-grid section background (matches the live .bg-mesh-grid). */
.eink_bg_mesh {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-top: 76px;
  padding-bottom: 76px;
  background-image: linear-gradient(rgba(15, 23, 32, 0.06) 1px, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(15, 23, 32, 0.06) 1px, rgba(0, 0, 0, 0) 1px);
  background-size: 44px 44px;
}

/* ---------------------------------------------------------------------------
   LotRanger: fw_cards optional price line
   --------------------------------------------------------------------------- */
.eink_card_price {
  font-size: 15px;
  font-weight: 700;
  color: var(--eink-color-primary, #333399);
  margin: 0 0 8px;
}

/* ---------------------------------------------------------------------------
   Block: feature_grid — responsive multi-column check-list
   --------------------------------------------------------------------------- */
.eink_feature_grid {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 28px;
}

.eink_feature_grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  line-height: 1.4;
  color: #1b2430;
}

.eink_feature_check {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(31, 96, 255, 0.12);
  color: #1f60ff;
  font-size: 11px;
  margin-top: 1px;
}

.eink_bg_dark .eink_feature_grid li {
  color: #eef2f1;
}

@media (max-width: 900px) {
  .eink_feature_grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .eink_feature_grid {
    grid-template-columns: 1fr;
  }
}
/* ---------------------------------------------------------------------------
   Block: pricing_calculator — copy (left) + interactive calculator card (right)
   --------------------------------------------------------------------------- */
.eink_calc_section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.eink_calc_grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.eink_calc_heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.12;
  margin: 12px 0;
}

.eink_calc_intro {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0 0 22px;
}

.eink_calc_points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eink_calc_points li {
  display: flex;
  gap: 10px;
  font-size: 15.5px;
  line-height: 1.45;
}

.eink_calc_points i {
  color: #55d6ff;
  margin-top: 3px;
}

.eink_bg_dark .eink_calc_heading {
  color: #fff;
}

.eink_bg_dark .eink_calc_intro {
  color: rgba(255, 255, 255, 0.72);
}

.eink_bg_dark .eink_calc_points li {
  color: #eef2f1;
}

.eink_calc_card {
  background: #fff;
  color: #1b1f2a;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(10, 15, 40, 0.35);
}

.eink_calc_card_heading {
  font-size: 21px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #1b1f2a;
}

.eink_calc_card_intro {
  font-size: 14px;
  line-height: 1.55;
  color: #5a6475;
  margin: 0 0 20px;
}

.eink_calc_label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1b1f2a;
  margin-bottom: 10px;
}

.eink_calc_slider {
  width: 100%;
  accent-color: #1f60ff;
  margin-bottom: 8px;
}

.eink_calc_results {
  border-top: 1px solid #e4e8f1;
  margin-top: 16px;
  padding-top: 16px;
}

.eink_calc_result_main {
  margin-bottom: 14px;
}

.eink_calc_result_label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5a6475;
  font-weight: 700;
}

.eink_calc_result_value {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #1f60ff;
  line-height: 1.1;
}

.eink_calc_result_sub {
  font-size: 13px;
  color: #5a6475;
}

.eink_calc_result_row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  padding: 7px 0;
  border-top: 1px dashed #eef2fb;
}

.eink_calc_result_row span {
  color: #5a6475;
}

.eink_calc_result_row strong {
  color: #1b1f2a;
  text-align: right;
}

.eink_calc_extras {
  margin-top: 18px;
  border-top: 1px solid #e4e8f1;
  padding-top: 16px;
}

.eink_calc_extras_heading {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 10px;
}

.eink_calc_extras_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.eink_calc_extra {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1b1f2a;
  cursor: pointer;
}

.eink_calc_extra_price {
  color: #1f60ff;
  font-weight: 700;
}

.eink_calc_note {
  font-size: 12px;
  color: #5a6475;
  margin: 14px 0 0;
}

.eink_calc_actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.footer_cols_note {
  font-size: 12.5px;
  opacity: 0.7;
  margin: 8px 0 0;
}

@media (max-width: 900px) {
  .eink_calc_grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .eink_calc_heading {
    font-size: 28px;
  }
}
.eink_form_hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.eink_form input[type=text],
.eink_form input[type=email],
.eink_form input[type=tel],
.eink_form input[type=number],
.eink_form input[type=date],
.eink_form input[type=search],
.eink_form select,
.eink_form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: #14181F;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  outline: none;
}
.eink_form input[type=text]:focus,
.eink_form input[type=email]:focus,
.eink_form input[type=tel]:focus,
.eink_form input[type=number]:focus,
.eink_form input[type=date]:focus,
.eink_form input[type=search]:focus,
.eink_form select:focus,
.eink_form textarea:focus {
  border-color: var(--eink-color-primary, #1B6DF3);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--eink-color-primary, #1B6DF3) 18%, transparent);
}
.eink_form textarea {
  resize: vertical;
}

.eink_form_field {
  margin: 0 0 14px;
}

.eink_form_label {
  display: block;
  margin: 0 0 5px;
  font-size: 12.5px;
  font-weight: 700;
  color: #39414D;
}

.eink_form_req {
  color: #DC2626;
}

.eink_form_field_check label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #39414D;
  line-height: 1.5;
  cursor: pointer;
}
.eink_form_field_check input[type=checkbox] {
  width: auto;
  margin-top: 2px;
  accent-color: var(--eink-color-primary, #1B6DF3);
}

.eink_form_actions {
  margin-top: 6px;
}
.eink_form_actions button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--eink-color-primary, #1B6DF3);
  color: #FFFFFF;
  border: 0;
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}
.eink_form_actions button:hover {
  background: color-mix(in srgb, var(--eink-color-primary, #1B6DF3) 85%, #000);
}
.eink_form_actions button:disabled {
  opacity: 0.55;
  cursor: default;
}

.eink_form_status {
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 600;
}
.eink_form_status.eink_form_ok {
  color: #15803D;
}
.eink_form_status.eink_form_err {
  color: #DC2626;
}

.eink_ai_hero {
  background: linear-gradient(160deg, #0E1218 0%, #171E28 55%, #14202F 100%);
  color: #FFFFFF;
  overflow: hidden;
}
.eink_ai_hero .eink_ai_hero_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 20px 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 48px;
  align-items: center;
}

.eink_ai_hero_main {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 560px;
}

.eink_ai_hero_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CC1FF;
  background: rgba(27, 109, 243, 0.14);
  border: 1px solid rgba(91, 155, 255, 0.35);
  padding: 6px 12px;
  border-radius: 999px;
}
.eink_ai_hero_badge i {
  font-size: 12px;
}

.eink_ai_hero_heading {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.eink_ai_hero_sub {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.55;
  color: #AEB8C6;
  max-width: 480px;
}

.eink_ai_hero_form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eink_ai_hero_inputwrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 6px 6px 6px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.eink_ai_hero_inputwrap > i {
  color: #1B6DF3;
  font-size: 17px;
  flex-shrink: 0;
}
.eink_ai_hero_inputwrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  color: #14181F;
  background: transparent;
  padding: 12px 0;
  min-width: 0;
}
.eink_ai_hero_inputwrap input::placeholder {
  color: #98A1AE;
}
.eink_ai_hero_inputwrap button {
  background: #1B6DF3;
  color: #FFFFFF;
  border: none;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.eink_ai_hero_inputwrap button:hover {
  background: #1554C0;
}

.eink_ai_hero_chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.eink_ai_hero_chip {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #D8DEE7;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 999px;
  text-decoration: none;
}
.eink_ai_hero_chip:hover {
  background: rgba(27, 109, 243, 0.25);
  border-color: rgba(91, 155, 255, 0.6);
  color: #FFFFFF;
}

.eink_ai_hero_trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #7A8494;
}
.eink_ai_hero_trust i {
  color: #15803D;
  margin-right: 3px;
}

.eink_ai_hero_rail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.eink_ai_hero_note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 18px;
}
.eink_ai_hero_note .eink_ai_hero_note_ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #1B6DF3;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 13px;
}
.eink_ai_hero_note p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #D8DEE7;
}

.eink_ai_hero_card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 12px 16px 12px 12px;
  color: #14181F;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.eink_ai_hero_card .eink_ai_hero_card_thumb {
  width: 86px;
  height: 60px;
  border-radius: 9px;
  background: linear-gradient(135deg, #1C222B, #2A3240);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #AEB8C6;
  font-size: 26px;
  opacity: 0.9;
}
.eink_ai_hero_card .eink_ai_hero_card_body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.eink_ai_hero_card .eink_ai_hero_card_body strong {
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eink_ai_hero_card .eink_ai_hero_card_meta {
  font-size: 12px;
  color: #5B6472;
  font-variant-numeric: tabular-nums;
}
.eink_ai_hero_card .eink_ai_hero_card_tags {
  display: flex;
  gap: 4px;
  margin-top: 3px;
  flex-wrap: wrap;
}
.eink_ai_hero_card .eink_ai_hero_tag {
  font-size: 10.5px;
  font-weight: 600;
  color: #15803D;
  background: #ECFDF5;
  border-radius: 4px;
  padding: 2px 6px;
}
.eink_ai_hero_card .eink_ai_hero_score {
  background: #1B6DF3;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
  border-radius: 999px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

a.eink_ai_hero_card {
  text-decoration: none;
}
a.eink_ai_hero_card:hover {
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
}
a.eink_ai_hero_card .eink_ai_hero_card_thumb {
  position: relative;
  overflow: hidden;
}
a.eink_ai_hero_card .eink_ai_hero_card_thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eink_ai_hero_live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #7A8494;
  padding: 0 4px;
}

.eink_link_tiles {
  padding: 48px 0 8px;
}
.eink_link_tiles .eink_lt_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.eink_lt_tile {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 12px;
  padding: 15px 16px;
  text-decoration: none;
  color: #14181F;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.eink_lt_tile:hover {
  border-color: #1B6DF3;
  background: #F8FAFF;
}
.eink_lt_tile .eink_lt_ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #F0F2F5;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #39414D;
  font-size: 15px;
}
.eink_lt_tile .eink_lt_txt {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.eink_lt_tile .eink_lt_label {
  font-size: 14px;
  font-weight: 700;
}
.eink_lt_tile .eink_lt_sub {
  font-size: 12px;
  color: #7A8494;
  font-variant-numeric: tabular-nums;
}

.eink_link_pills {
  padding: 28px 0 8px;
}
.eink_link_pills .eink_lp_heading {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.eink_link_pills .eink_lp_wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.eink_lp_pill {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #39414D;
  text-decoration: none;
}
.eink_lp_pill:hover {
  border-color: #1B6DF3;
  color: #1B6DF3;
}
.eink_lp_pill .eink_lp_count {
  color: #98A1AE;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.eink_invp {
  padding: 24px 0 64px;
  font-variant-numeric: tabular-nums;
}
.eink_invp .eink_invp_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.eink_invp_head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.eink_invp_head .eink_invp_h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.eink_invp_head .eink_invp_summary {
  margin: 4px 0 0;
  font-size: 13px;
  color: #5B6472;
}
.eink_invp_head .eink_invp_head_actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.eink_invp_head .eink_invp_sortlabel {
  font-size: 12.5px;
  color: #5B6472;
  font-weight: 600;
}
.eink_invp_head select {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #14181F;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  padding: 8px 10px;
  cursor: pointer;
}

.eink_invp_filterbtn {
  display: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #14181F;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  padding: 8px 14px;
  cursor: pointer;
}

.eink_invp_refine {
  background: linear-gradient(120deg, #14202F, #1B2A3D);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.eink_invp_refine form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 4px 4px 4px 12px;
}
.eink_invp_refine form > i {
  color: #1B6DF3;
  font-size: 14px;
  flex-shrink: 0;
}
.eink_invp_refine form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13.5px;
  font-family: inherit;
  color: #14181F;
  background: transparent;
  padding: 8px 0;
  min-width: 0;
}
.eink_invp_refine form input::placeholder {
  color: #98A1AE;
}
.eink_invp_refine form button {
  background: #1B6DF3;
  color: #FFFFFF;
  border: none;
  font-size: 12.5px;
  font-weight: 700;
  font-family: inherit;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}
.eink_invp_refine form button:hover {
  background: #1554C0;
}
.eink_invp_refine .eink_invp_refine_chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.eink_invp_refine .eink_invp_refine_chips button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #D8DEE7;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  padding: 6px 11px;
  border-radius: 999px;
  cursor: pointer;
}
.eink_invp_refine .eink_invp_refine_chips button:hover {
  background: rgba(27, 109, 243, 0.3);
}

.eink_invp_active {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  align-items: center;
}
.eink_invp_active:not(:empty) {
  margin-top: 14px;
}
.eink_invp_active button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F0F6FF;
  border: 1px solid #9CC1FF;
  color: #1554C0;
  font-size: 12.5px;
  font-weight: 600;
  font-family: inherit;
  padding: 6px 11px;
  border-radius: 999px;
  cursor: pointer;
}
.eink_invp_active button:hover {
  background: #E0EDFF;
}
.eink_invp_active button span {
  font-weight: 800;
}
.eink_invp_active .eink_invp_clearall {
  background: none;
  border: none;
  color: #5B6472;
  text-decoration: underline;
}
.eink_invp_active .eink_invp_clearall:hover {
  background: none;
  color: #14181F;
}

.eink_invp_layout {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  align-items: flex-start;
}

.eink_invp_filters {
  width: 250px;
  flex-shrink: 0;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 76px;
  max-height: calc(100vh - 100px);
  overflow: auto;
}
.eink_invp_filters .eink_invp_filters_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.eink_invp_filters .eink_invp_filters_head h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}
.eink_invp_filters .eink_invp_filterclose {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #5B6472;
  padding: 4px;
}

.eink_invp_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eink_invp_group > label {
  font-size: 12.5px;
  font-weight: 700;
  color: #39414D;
}
.eink_invp_group > label span {
  color: #1B6DF3;
}
.eink_invp_group input[type=range] {
  width: 100%;
  accent-color: #1B6DF3;
}
.eink_invp_group select {
  font-family: inherit;
  font-size: 13px;
  color: #14181F;
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  padding: 8px 10px;
  background: #FFFFFF;
}

.eink_invp_assume_chip {
  font-size: 11px;
  color: #92400E;
  background: #FEF3C7;
  border-radius: 5px;
  padding: 3px 7px;
  align-self: flex-start;
  font-weight: 600;
  text-decoration: none;
}
.eink_invp_assume_chip:hover {
  background: #FDE9A8;
  color: #92400E;
  text-decoration: none;
}

.eink_invp_pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.eink_invp_pills button {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  color: #39414D;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  padding: 6px 11px;
  border-radius: 8px;
  cursor: pointer;
}
.eink_invp_pills button:hover {
  border-color: #9CC1FF;
}
.eink_invp_pills button.on {
  background: #F0F6FF;
  border-color: #9CC1FF;
  color: #1554C0;
}

.eink_invp_apply {
  display: none;
  background: #14181F;
  color: #FFFFFF;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
}

.eink_invp_results {
  flex: 1;
  min-width: 0;
}

.eink_invp_loading {
  display: none;
  text-align: center;
  color: #5B6472;
  font-size: 13.5px;
  padding: 8px 0 16px;
}
.eink_invp_loading.active {
  display: block;
}

.eink_invp_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.eink_vc_paymeta {
  font-size: 10.5px;
  color: #98A1AE;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: -4px 0 2px;
}

.eink_invp_error {
  text-align: center;
  color: #5B6472;
  padding: 40px 0;
  grid-column: 1/-1;
}

.eink_invp_nomatch {
  display: none;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 16px;
  padding: 36px 28px;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 560px;
  margin: 20px auto;
}
.eink_invp_nomatch.open {
  display: flex;
}
.eink_invp_nomatch .eink_invp_nomatch_ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #F0F6FF;
  color: #1B6DF3;
  display: grid;
  place-items: center;
  font-size: 17px;
}
.eink_invp_nomatch h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
}
.eink_invp_nomatch p {
  margin: 0;
  font-size: 13.5px;
  color: #5B6472;
  line-height: 1.55;
}
.eink_invp_nomatch .eink_invp_nomatch_opts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.eink_invp_nomatch .eink_invp_nomatch_opts button {
  background: #F5F6F8;
  border: 1px solid #E4E7EC;
  color: #14181F;
  font-size: 12.5px;
  font-weight: 600;
  font-family: inherit;
  padding: 8px 13px;
  border-radius: 999px;
  cursor: pointer;
}
.eink_invp_nomatch .eink_invp_nomatch_opts button:hover {
  border-color: #1B6DF3;
  color: #1B6DF3;
}

.eink_invp_pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.eink_invp_pagination button {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  color: #39414D;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  padding: 8px 13px;
  border-radius: 9px;
  cursor: pointer;
}
.eink_invp_pagination button:hover:not(:disabled) {
  border-color: #1B6DF3;
  color: #1B6DF3;
}
.eink_invp_pagination button:disabled {
  opacity: 0.45;
  cursor: default;
}
.eink_invp_pagination button.active {
  background: #14181F;
  border-color: #14181F;
  color: #FFFFFF;
}
.eink_invp_pagination span {
  align-self: center;
  color: #98A1AE;
}

.eink_invp_drawer_overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 18, 24, 0.5);
  z-index: 80;
  align-items: flex-end;
  justify-content: center;
}
.eink_invp_drawer_overlay.open {
  display: flex;
}

.eink_invp_drawer {
  background: #FFFFFF;
  border-radius: 18px 18px 0 0;
  padding: 24px;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 80vh;
  overflow: auto;
  color: #14181F;
}
.eink_invp_drawer .eink_invp_drawer_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.eink_invp_drawer .eink_invp_drawer_head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}
.eink_invp_drawer .eink_invp_drawer_head button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #5B6472;
}
.eink_invp_drawer .eink_invp_drawer_line {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #39414D;
}
.eink_invp_drawer .eink_invp_drawer_rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.eink_invp_drawer .eink_invp_drawer_rows > div {
  background: #F5F6F8;
  border-radius: 9px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.eink_invp_drawer .eink_invp_drawer_rows > div span {
  font-size: 11px;
  color: #7A8494;
  font-weight: 600;
}
.eink_invp_drawer .eink_invp_drawer_rows > div strong {
  font-size: 14px;
  font-weight: 700;
}
.eink_invp_drawer .eink_invp_drawer_note {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #92400E;
  background: #FEF3C7;
  border-radius: 9px;
  padding: 10px 12px;
}
.eink_invp_drawer .eink_invp_drawer_tune {
  align-self: flex-start;
  background: #14181F;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 9px;
  text-decoration: none;
}
.eink_invp_drawer .eink_invp_drawer_tune:hover {
  background: #1B6DF3;
  color: #FFFFFF;
}

@media (max-width: 860px) {
  .eink_invp_filterbtn {
    display: inline-block;
  }
  .eink_invp_filters {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    top: auto;
    width: auto;
    z-index: 90;
    max-height: 75vh;
    box-shadow: 0 -12px 40px rgba(14, 18, 24, 0.3);
  }
  .eink_invp_filters.open {
    display: flex;
  }
  .eink_invp_filters .eink_invp_filterclose {
    display: block;
  }
  .eink_invp_apply {
    display: block;
  }
}
.eink_vc {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  overflow: hidden;
  color: #14181F;
  height: 100%;
  box-shadow: 0 1px 2px rgba(16, 20, 24, 0.05);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.eink_vc:hover {
  box-shadow: 0 8px 24px rgba(16, 20, 24, 0.12);
  transform: translateY(-2px);
}

.eink_vc_thumb {
  display: block;
  position: relative;
  background: linear-gradient(135deg, #1C222B 0%, #2A3240 100%);
  aspect-ratio: 4/3;
  overflow: hidden;
  text-decoration: none;
}
.eink_vc_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative; /* paints above the absolute icon placeholder */
}
.eink_vc_thumb .eink_vc_thumb_ico {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #AEB8C6;
  font-size: 38px;
  opacity: 0.4;
}
.eink_vc_thumb .eink_vc_photos {
  position: absolute;
  left: 12px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(10, 13, 17, 0.7);
  color: #D8DEE7;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}
.eink_vc_thumb .eink_vc_freshbadge {
  position: absolute;
  right: 12px;
  bottom: 10px;
  background: rgba(27, 109, 243, 0.25);
  border: 1px solid rgba(91, 155, 255, 0.5);
  color: #E4EFFF;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}
.eink_vc_thumb .eink_vc_new {
  position: absolute;
  left: 12px;
  top: 10px;
  background: #1B6DF3;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
}

.eink_vc_body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 12px;
  flex: 1;
}

.eink_vc_toprow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.eink_vc_title {
  text-decoration: none;
  color: #14181F;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.eink_vc_title:hover {
  color: #1B6DF3;
}

.eink_vc_save {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #E4E7EC;
  background: #FFFFFF;
  color: #98A1AE;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 13px;
}
.eink_vc_save:hover {
  border-color: #1B6DF3;
}
.eink_vc_save.on {
  background: #FEF2F2;
  color: #DC2626;
}

.eink_vc_pricerow {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.eink_vc_pricerow .eink_vc_price {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.eink_vc_pricerow .eink_vc_pay {
  font-size: 13px;
  color: #5B6472;
}
.eink_vc_pricerow .eink_vc_pay em {
  font-style: normal;
  color: #98A1AE;
}
.eink_vc_pricerow .eink_vc_assume {
  font-size: 11px;
  color: #92400E;
  background: #FEF3C7;
  border: none;
  border-radius: 5px;
  padding: 2px 7px;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
}
.eink_vc_pricerow .eink_vc_assume:hover {
  background: #FDE9A8;
}

.eink_vc_specs {
  display: flex;
  gap: 6px 12px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #5B6472;
}
.eink_vc_specs strong {
  font-weight: 600;
  color: #39414D;
}

.eink_vc_dealer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #5B6472;
  margin-top: auto;
}
.eink_vc_dealer i {
  font-size: 12px;
  flex-shrink: 0;
}
.eink_vc_dealer strong {
  font-weight: 600;
  color: #39414D;
}

.eink_vc_actions {
  display: flex;
  gap: 8px;
  padding: 10px 16px 14px;
  border-top: 1px solid #F0F2F5;
}
.eink_vc_actions .eink_vc_details {
  flex: 1;
  text-align: center;
  background: #14181F;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 0;
  border-radius: 9px;
  text-decoration: none;
}
.eink_vc_actions .eink_vc_details:hover {
  background: #1B6DF3;
  color: #FFFFFF;
}
.eink_vc_actions .eink_vc_compare {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  color: #39414D;
  border: 1px solid #E4E7EC;
  font-size: 13px;
  font-weight: 600;
  padding: 0 12px;
  border-radius: 9px;
  cursor: pointer;
  font-family: inherit;
}
.eink_vc_actions .eink_vc_compare:hover {
  border-color: #1B6DF3;
}
.eink_vc_actions .eink_vc_compare.on {
  background: #F0F6FF;
  color: #1B6DF3;
  border-color: #9CC1FF;
}
.eink_vc_actions .eink_vc_ask {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  background: #FFFFFF;
  color: #1B6DF3;
  border: 1px solid #E4E7EC;
  font-size: 13px;
  border-radius: 9px;
  text-decoration: none;
}
.eink_vc_actions .eink_vc_ask:hover {
  background: #F0F6FF;
  border-color: #9CC1FF;
}

.eink_finw {
  padding: 32px 0 90px;
  font-variant-numeric: tabular-nums;
}
.eink_finw .eink_finw_inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

.eink_finw_intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.eink_finw_intro h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.eink_finw_intro p {
  margin: 0;
  font-size: 14px;
  color: #5B6472;
  line-height: 1.6;
}

.eink_finw_dots {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}
.eink_finw_dots span {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: #E4E7EC;
}
.eink_finw_dots span.on {
  background: #1B6DF3;
}

.eink_finw_card {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.eink_finw_step {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.eink_finw_step.on {
  display: flex;
}
.eink_finw_step h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
}
.eink_finw_step input[type=range] {
  width: 100%;
  accent-color: #1B6DF3;
}

.eink_finw_sub {
  margin: 0;
  font-size: 13.5px;
  color: #5B6472;
  line-height: 1.6;
}

.eink_finw_big {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.eink_finw_big span {
  font-size: 38px;
  font-weight: 800;
  color: #1B6DF3;
}
.eink_finw_big em {
  font-style: normal;
  font-size: 15px;
  color: #5B6472;
}

.eink_finw_freq {
  display: flex;
  gap: 4px;
  background: #F0F2F5;
  border-radius: 9px;
  padding: 3px;
  align-self: flex-start;
}
.eink_finw_freq button {
  background: transparent;
  color: #5B6472;
  border: none;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 7px;
  cursor: pointer;
}
.eink_finw_freq button.on {
  background: #FFFFFF;
  color: #14181F;
  box-shadow: 0 1px 3px rgba(16, 20, 24, 0.15);
}

.eink_finw_hint {
  margin: 0;
  font-size: 12px;
  color: #7A8494;
}

.eink_finw_opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eink_finw_opts button {
  text-align: left;
  background: #FFFFFF;
  border: 1.5px solid #E4E7EC;
  color: #14181F;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  padding: 14px 16px;
  border-radius: 12px;
  cursor: pointer;
}
.eink_finw_opts button:hover {
  border-color: #1B6DF3;
}
.eink_finw_opts button.on {
  background: #F0F6FF;
  border-color: #1B6DF3;
}
.eink_finw_opts button span {
  font-size: 12px;
  color: #7A8494;
  font-weight: 500;
}

.eink_finw_tradeval {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eink_finw_tradeval label {
  font-size: 12.5px;
  font-weight: 700;
  color: #39414D;
}
.eink_finw_tradeval label span {
  color: #1B6DF3;
}

.eink_finw_terms {
  background: #F5F6F8;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 13px;
  color: #39414D;
  line-height: 1.7;
}

.eink_finw_consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: #39414D;
  cursor: pointer;
  line-height: 1.5;
}
.eink_finw_consent input {
  accent-color: #1B6DF3;
  margin-top: 2px;
  flex-shrink: 0;
}

.eink_finw_nav {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  border-top: 1px solid #F0F2F5;
  padding-top: 18px;
}
.eink_finw_nav button {
  font-family: inherit;
  font-size: 13.5px;
  border-radius: 10px;
  cursor: pointer;
}
.eink_finw_nav button:first-child {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  color: #39414D;
  font-weight: 700;
  padding: 11px 20px;
}
.eink_finw_nav button:last-child {
  background: #1B6DF3;
  border: none;
  color: #FFFFFF;
  font-weight: 800;
  padding: 11px 26px;
}
.eink_finw_nav button:last-child:hover {
  background: #1554C0;
}
.eink_finw_nav button:last-child:disabled {
  background: #AEB8C6;
  cursor: not-allowed;
}

.eink_finw_results {
  display: none;
  flex-direction: column;
  gap: 18px;
}
.eink_finw_results.open {
  display: flex;
}
.eink_finw_results h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.eink_finw_results .eink_finw_ressummary {
  margin: 0;
  font-size: 13.5px;
  color: #5B6472;
  line-height: 1.6;
}
.eink_finw_results .eink_finw_restart {
  align-self: flex-start;
  background: none;
  border: none;
  color: #1B6DF3;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.eink_finw_results .eink_finw_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.eink_finw_results .eink_finw_none {
  display: none;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 24px;
  font-size: 13.5px;
  color: #5B6472;
  line-height: 1.6;
}
.eink_finw_results .eink_finw_none a {
  color: #1B6DF3;
  font-weight: 700;
}

.eink_cmp {
  padding: 24px 0 90px;
  font-variant-numeric: tabular-nums;
}
.eink_cmp .eink_cmp_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.eink_cmp_head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.eink_cmp_head h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.eink_cmp_head p {
  margin: 5px 0 0;
  font-size: 13.5px;
  color: #5B6472;
}
.eink_cmp_head button {
  background: none;
  border: none;
  color: #5B6472;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
}
.eink_cmp_head button:hover {
  color: #14181F;
}

.eink_cmp_verdicts {
  margin-top: 18px;
  background: linear-gradient(120deg, #14202F, #1B2A3D);
  color: #FFFFFF;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.eink_cmp_verdicts .eink_cmp_verdicts_ico {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #1B6DF3;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 14px;
}
.eink_cmp_verdicts .eink_cmp_verdicts_label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9CC1FF;
  margin-bottom: 8px;
}
.eink_cmp_verdicts div div {
  font-size: 13.5px;
  line-height: 1.5;
  color: #E7ECF2;
  margin-bottom: 5px;
}
.eink_cmp_verdicts div div strong {
  color: #FFFFFF;
}

.eink_cmp_tablewrap {
  margin-top: 18px;
  overflow-x: auto;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 16px;
}

.eink_cmp_table {
  display: grid;
}
.eink_cmp_table .eink_cmp_sticky {
  position: sticky;
  left: 0;
  background: #FFFFFF;
  z-index: 2;
  border-right: 1px solid #F0F2F5;
}
.eink_cmp_table .eink_cmp_corner {
  border-bottom: 1px solid #F0F2F5;
}
.eink_cmp_table .eink_cmp_rowlabel {
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #7A8494;
  border-bottom: 1px solid #F5F6F8;
  display: flex;
  align-items: center;
  min-height: 44px;
}
.eink_cmp_table .eink_cmp_vhead {
  border-bottom: 1px solid #F0F2F5;
  border-right: 1px solid #F5F6F8;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.eink_cmp_table .eink_cmp_thumb {
  position: relative;
  display: block;
  height: 76px;
  border-radius: 9px;
  background: linear-gradient(135deg, #1C222B, #2A3240);
  overflow: hidden;
}
.eink_cmp_table .eink_cmp_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
}
.eink_cmp_table .eink_cmp_thumb .eink_cmp_thumb_ico {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #AEB8C6;
  font-size: 22px;
  opacity: 0.45;
}
.eink_cmp_table .eink_cmp_vtitle {
  font-size: 13px;
  font-weight: 800;
  color: #14181F;
  text-decoration: none;
  line-height: 1.3;
}
.eink_cmp_table .eink_cmp_vtitle:hover {
  color: #1B6DF3;
}
.eink_cmp_table .eink_cmp_remove {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 24px;
  height: 24px;
  background: rgba(10, 13, 17, 0.6);
  color: #FFFFFF;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
}
.eink_cmp_table .eink_cmp_remove:hover {
  background: #1B6DF3;
}
.eink_cmp_table .eink_cmp_cell {
  padding: 11px 14px;
  font-size: 13px;
  color: #39414D;
  font-weight: 500;
  border-bottom: 1px solid #F5F6F8;
  border-right: 1px solid #F5F6F8;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  line-height: 1.4;
}
.eink_cmp_table .eink_cmp_cell.best {
  font-weight: 700;
}
.eink_cmp_table .eink_cmp_best {
  font-size: 10px;
  font-weight: 800;
  color: #15803D;
  background: #ECFDF5;
  border-radius: 4px;
  padding: 2px 6px;
  flex-shrink: 0;
}
.eink_cmp_table .eink_cmp_colactions {
  padding: 12px 14px;
  border-right: 1px solid #F5F6F8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eink_cmp_table .eink_cmp_colactions .eink_cmp_contact {
  background: #1B6DF3;
  color: #FFFFFF;
  text-align: center;
  font-size: 12.5px;
  font-weight: 800;
  padding: 10px;
  border-radius: 9px;
  text-decoration: none;
}
.eink_cmp_table .eink_cmp_colactions .eink_cmp_contact:hover {
  background: #1554C0;
  color: #FFFFFF;
}
.eink_cmp_table .eink_cmp_colactions .eink_cmp_view {
  text-align: center;
  border: 1px solid #E4E7EC;
  color: #39414D;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px;
  border-radius: 9px;
  text-decoration: none;
}
.eink_cmp_table .eink_cmp_colactions .eink_cmp_view:hover {
  border-color: #1B6DF3;
  color: #1B6DF3;
}

.eink_cmp_actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.eink_cmp_actions .eink_cmp_addmore {
  border: 1px solid #E4E7EC;
  background: #FFFFFF;
  color: #39414D;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 10px;
  text-decoration: none;
}
.eink_cmp_actions .eink_cmp_addmore:hover {
  border-color: #1B6DF3;
  color: #1B6DF3;
}

.eink_cmp_empty {
  margin: 60px auto;
  max-width: 420px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.eink_cmp_empty .eink_cmp_empty_ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  display: grid;
  place-items: center;
  color: #1B6DF3;
  font-size: 20px;
}
.eink_cmp_empty h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}
.eink_cmp_empty p {
  margin: 0;
  font-size: 13.5px;
  color: #5B6472;
  line-height: 1.6;
}
.eink_cmp_empty a {
  background: #14181F;
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 10px;
  text-decoration: none;
}
.eink_cmp_empty a:hover {
  background: #1B6DF3;
  color: #FFFFFF;
}

.eink_cmp_loading {
  display: none;
  text-align: center;
  color: #5B6472;
  font-size: 13.5px;
  padding: 40px 0;
}

.eink_invp_tray {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #14181F;
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(14, 18, 24, 0.35);
}
.eink_invp_tray:hover {
  background: #1B6DF3;
  color: #FFFFFF;
  text-decoration: none;
}
.eink_invp_tray span {
  color: #9CC1FF;
}

.eink_aiw {
  font-variant-numeric: tabular-nums;
}
.eink_aiw .eink_aiw_zones {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr) 300px;
  min-height: calc(100vh - 120px);
  align-items: stretch;
}

.eink_aiw_chatcol {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-right: 1px solid #E4E7EC;
  background: #FFFFFF;
}
.eink_aiw_chatcol.collapsed {
  display: none;
}

.eink_aiw_chathead {
  padding: 14px 18px;
  border-bottom: 1px solid #F0F2F5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eink_aiw_chathead .eink_aiw_logo {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #1B6DF3;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}
.eink_aiw_chathead .eink_aiw_title {
  font-size: 14px;
  font-weight: 800;
}
.eink_aiw_chathead .eink_aiw_sub {
  font-size: 11px;
  color: #7A8494;
}

.eink_aiw_chat {
  flex: 1;
  min-height: 200px;
  max-height: calc(100vh - 260px);
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eink_aiw_welcome {
  margin: auto 0;
  padding: 10px 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.eink_aiw_welcome h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.eink_aiw_welcome p {
  margin: 0;
  font-size: 13.5px;
  color: #5B6472;
  line-height: 1.6;
}

.eink_aiw_starters {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.eink_aiw_starters button {
  text-align: left;
  background: #F5F6F8;
  border: 1px solid #E4E7EC;
  color: #39414D;
  font-size: 12.5px;
  font-weight: 600;
  font-family: inherit;
  padding: 10px 13px;
  border-radius: 10px;
  cursor: pointer;
  line-height: 1.4;
}
.eink_aiw_starters button:hover {
  border-color: #1B6DF3;
  color: #1554C0;
  background: #F0F6FF;
}

.eink_aiw_msg {
  max-width: 88%;
  padding: 11px 14px;
  font-size: 13.5px;
  line-height: 1.55;
  white-space: pre-wrap;
}
.eink_aiw_msg.user {
  align-self: flex-end;
  background: #14181F;
  color: #FFFFFF;
  border-radius: 14px 14px 4px 14px;
}
.eink_aiw_msg.ai {
  align-self: flex-start;
  background: #F5F6F8;
  color: #14181F;
  border: 1px solid #EDF0F3;
  border-radius: 14px 14px 14px 4px;
}

.eink_aiw_clarify {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  max-width: 88%;
}
.eink_aiw_clarify button, .eink_aiw_clarify a {
  background: #F0F6FF;
  border: 1px solid #9CC1FF;
  color: #1554C0;
  font-size: 12.5px;
  font-weight: 700;
  font-family: inherit;
  padding: 8px 13px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
}
.eink_aiw_clarify button:hover, .eink_aiw_clarify a:hover {
  background: #E0EDFF;
}

.eink_aiw_grounding {
  font-size: 11px;
  color: #7A8494;
  display: flex;
  align-items: center;
  gap: 5px;
}

.eink_aiw_loading {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F5F6F8;
  border-radius: 12px;
  padding: 12px 14px;
  align-self: flex-start;
}
.eink_aiw_loading span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #1B6DF3;
  animation: eink-aiw-pulse 1s infinite;
}
.eink_aiw_loading em {
  font-style: normal;
  font-size: 12.5px;
  color: #5B6472;
  font-weight: 600;
}

@keyframes eink-aiw-pulse {
  0%, 100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}
.eink_aiw_form {
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  border-top: 1px solid #F0F2F5;
  display: flex;
  gap: 9px;
  align-items: flex-end;
}
.eink_aiw_form textarea {
  flex: 1;
  font-family: inherit;
  font-size: 13.5px;
  line-height: 1.5;
  border: 1px solid #E4E7EC;
  border-radius: 11px;
  padding: 11px 13px;
  resize: none;
  max-height: 120px;
  outline: none;
  color: #14181F;
}
.eink_aiw_form textarea:focus {
  border-color: #1B6DF3;
}
.eink_aiw_form textarea::placeholder {
  color: #98A1AE;
}
.eink_aiw_form button {
  background: #1B6DF3;
  color: #FFFFFF;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 15px;
}
.eink_aiw_form button:hover {
  background: #1554C0;
}

.eink_aiw_results {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #F5F6F8;
}

.eink_aiw_reshead {
  padding: 14px 18px;
  border-bottom: 1px solid #E4E7EC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.eink_aiw_reshead .eink_aiw_restitle {
  font-size: 14px;
  font-weight: 800;
}
.eink_aiw_reshead .eink_aiw_ressub {
  font-size: 11.5px;
  color: #7A8494;
}
.eink_aiw_reshead .eink_aiw_resbtns {
  display: flex;
  gap: 8px;
}
.eink_aiw_reshead button {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  color: #39414D;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  padding: 7px 12px;
  border-radius: 9px;
  cursor: pointer;
}
.eink_aiw_reshead button:hover {
  border-color: #1B6DF3;
}

.eink_aiw_resbody {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px 18px 90px;
}

.eink_aiw_placeholder {
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}
.eink_aiw_placeholder h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
}
.eink_aiw_placeholder p {
  margin: 0 auto;
  font-size: 13px;
  color: #5B6472;
  line-height: 1.6;
  max-width: 380px;
}
.eink_aiw_placeholder .eink_aiw_placeholder_ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  display: grid;
  place-items: center;
  color: #1B6DF3;
  font-size: 22px;
  margin: 0 auto 12px;
}

.eink_aiw_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 14px;
}

.eink_aiw_dealerscope {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 18px;
  padding: 9px 13px;
  background: #F0F6FF;
  border: 1px solid #9CC1FF;
  border-radius: 10px;
  font-size: 12.5px;
  color: #39414D;
}
.eink_aiw_dealerscope i {
  color: #1B6DF3;
}
.eink_aiw_dealerscope button {
  margin-left: auto;
  flex-shrink: 0;
  background: none;
  border: 0;
  color: #1B6DF3;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}
.eink_aiw_dealerscope button:hover {
  text-decoration: underline;
}

.eink_aiw_watch {
  margin-top: 16px;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 16px 18px;
  max-width: 560px;
}
.eink_aiw_watch .eink_aiw_watch_head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}
.eink_aiw_watch .eink_aiw_watch_head i {
  color: #1B6DF3;
}
.eink_aiw_watch p {
  margin: 6px 0 10px;
  font-size: 13px;
  color: #5B6472;
  line-height: 1.55;
}
.eink_aiw_watch form {
  position: relative;
  display: flex;
  gap: 8px;
}
.eink_aiw_watch form input[type=email] {
  flex: 1;
  min-width: 0;
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 13px;
  font-family: inherit;
}
.eink_aiw_watch form input[type=email]:focus {
  outline: none;
  border-color: #1B6DF3;
}
.eink_aiw_watch form button {
  flex-shrink: 0;
  background: #14181F;
  color: #FFFFFF;
  border: 0;
  border-radius: 9px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}
.eink_aiw_watch form button:hover {
  background: #1B6DF3;
}
.eink_aiw_watch form button:disabled {
  opacity: 0.6;
  cursor: default;
}
.eink_aiw_watch .eink_aiw_watch_note {
  display: block;
  margin-top: 8px;
  font-size: 11.5px;
  color: #7A8494;
}
.eink_aiw_watch .eink_aiw_watch_note.err {
  color: #B42318;
  font-weight: 600;
}
.eink_aiw_watch .eink_aiw_watch_done {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #15803D;
}
.eink_aiw_watch .eink_aiw_watch_done i {
  font-size: 16px;
}

.eink_aiw_score {
  position: absolute;
  left: 12px;
  top: 10px;
  background: #1B6DF3;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
}

.eink_aiw_matchchips {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.eink_aiw_matchchips .eink_aiw_reason {
  font-size: 11px;
  font-weight: 600;
  color: #15803D;
  background: #ECFDF5;
  border-radius: 5px;
  padding: 3px 7px;
}
.eink_aiw_matchchips .eink_aiw_caution {
  font-size: 11px;
  font-weight: 600;
  color: #92400E;
  background: #FEF3C7;
  border-radius: 5px;
  padding: 3px 7px;
}

.eink_aiw_profile {
  min-height: 0;
  overflow-y: auto;
  border-left: 1px solid #E4E7EC;
  background: #FFFFFF;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.eink_aiw_profile .eink_aiw_profhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.eink_aiw_profile .eink_aiw_profhead h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}
.eink_aiw_profile .eink_aiw_profhead button {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: #5B6472;
  cursor: pointer;
}
.eink_aiw_profile .eink_aiw_profnote {
  margin: -8px 0 0;
  font-size: 11.5px;
  color: #7A8494;
  line-height: 1.5;
}

.eink_aiw_profgroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eink_aiw_profgroup > label {
  font-size: 12px;
  font-weight: 700;
  color: #39414D;
}
.eink_aiw_profgroup > label span {
  color: #1B6DF3;
}
.eink_aiw_profgroup input[type=range] {
  width: 100%;
  accent-color: #1B6DF3;
}

.eink_aiw_assume {
  font-size: 11px;
  color: #92400E;
  background: #FEF3C7;
  border-radius: 5px;
  padding: 3px 7px;
  align-self: flex-start;
  font-weight: 600;
}

.eink_aiw_chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.eink_aiw_chips button {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  color: #39414D;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  padding: 6px 11px;
  border-radius: 8px;
  cursor: pointer;
}
.eink_aiw_chips button:hover {
  border-color: #9CC1FF;
}
.eink_aiw_chips button.on {
  background: #F0F6FF;
  border-color: #9CC1FF;
  color: #1554C0;
}
.eink_aiw_chips.eink_aiw_chips_red button.on {
  background: #FEF2F2;
  border-color: #FCA5A5;
  color: #B91C1C;
}

.eink_aiw_proffoot {
  border-top: 1px solid #F0F2F5;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eink_aiw_proffoot div {
  font-size: 12px;
  font-weight: 700;
  color: #39414D;
}
.eink_aiw_proffoot p {
  margin: 0;
  font-size: 11.5px;
  color: #7A8494;
  line-height: 1.6;
}
.eink_aiw_proffoot button {
  align-self: flex-start;
  background: none;
  border: none;
  color: #B91C1C;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

@media (max-width: 1000px) {
  .eink_aiw .eink_aiw_zones {
    grid-template-columns: 1fr;
  }
  .eink_aiw_chatcol {
    border-right: none;
    border-bottom: 1px solid #E4E7EC;
  }
  .eink_aiw_chat {
    max-height: 46vh;
  }
  .eink_aiw_profile {
    display: none;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 95;
    border: 1px solid #E4E7EC;
    border-radius: 16px;
    max-height: 70vh;
    box-shadow: 0 16px 50px rgba(14, 18, 24, 0.3);
  }
  .eink_aiw_profile.open {
    display: flex;
  }
  .eink_aiw_profile .eink_aiw_profhead button {
    display: block;
  }
}
@media (min-width: 1001px) {
  .eink_aiw_chattoggle {
    display: none;
  }
  .eink_aiw_profilebtn {
    display: none;
  }
}
.eink_cmp_actions .eink_cmp_askai {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #14181F;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 10px;
  text-decoration: none;
}
.eink_cmp_actions .eink_cmp_askai:hover {
  background: #1B6DF3;
  color: #FFFFFF;
}

@keyframes ei_dash {
  to {
    stroke-dashoffset: -240;
  }
}
@keyframes ei_float {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-8px);
  }
}
@keyframes ei_float2 {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(7px);
  }
}
@keyframes ei_pulse {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
@keyframes ei_drift {
  0% {
    transform: translate(-4%, -3%);
  }
  50% {
    transform: translate(4%, 3%);
  }
  100% {
    transform: translate(-4%, -3%);
  }
}
.eink_ei_hero {
  position: relative;
  background: #050510;
  color: #f5f7ff;
  overflow: hidden;
}
.eink_ei_hero .eink_ei_hero_glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse 60% 45% at 68% 42%, rgba(56, 0, 150, 0.42), transparent 65%), radial-gradient(ellipse 40% 32% at 20% 75%, rgba(70, 200, 255, 0.07), transparent 70%);
  animation: ei_drift 26s ease-in-out infinite;
  pointer-events: none;
}
.eink_ei_hero .eink_ei_hero_grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(174, 180, 200, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(174, 180, 200, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 75%);
  pointer-events: none;
}
.eink_ei_hero .eink_ei_hero_inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 32px 96px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 56px;
}
.eink_ei_hero .eink_ei_hero_text {
  flex: 1 1 480px;
  min-width: 320px;
}
.eink_ei_hero .eink_ei_eyebrow {
  margin: 0 0 20px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #46c8ff;
}
.eink_ei_hero .eink_ei_hero_heading {
  margin: 0 0 24px;
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f5f7ff;
}
.eink_ei_hero .eink_ei_hero_accent {
  background: linear-gradient(100deg, #9fb6ff, #46c8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eink_ei_hero .eink_ei_hero_sub {
  margin: 0 0 36px;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.65;
  color: #aeb4c8;
}
.eink_ei_hero .eink_ei_hero_ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.eink_ei_btn_primary,
.eink_ei_btn_primary:visited {
  display: inline-block;
  background: linear-gradient(135deg, #380096, #5316c9);
  color: #f5f7ff;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 10px;
  border: 1px solid rgba(159, 182, 255, 0.4);
  box-shadow: 0 0 28px rgba(56, 0, 150, 0.6);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.eink_ei_btn_primary:hover, .eink_ei_btn_primary:focus,
.eink_ei_btn_primary:visited:hover,
.eink_ei_btn_primary:visited:focus {
  color: #f5f7ff;
  box-shadow: 0 0 40px rgba(83, 22, 201, 0.85);
  transform: translateY(-2px);
  text-decoration: none;
}

.eink_ei_btn_ghost,
.eink_ei_btn_ghost:visited {
  display: inline-block;
  background: rgba(245, 247, 255, 0.04);
  color: #f5f7ff;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 10px;
  border: 1px solid rgba(174, 180, 200, 0.28);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.eink_ei_btn_ghost:hover, .eink_ei_btn_ghost:focus,
.eink_ei_btn_ghost:visited:hover,
.eink_ei_btn_ghost:visited:focus {
  color: #f5f7ff;
  border-color: rgba(70, 200, 255, 0.6);
  background: rgba(70, 200, 255, 0.06);
  text-decoration: none;
}

.eink_ei_orbit {
  flex: 1 1 460px;
  min-width: 340px;
  max-width: 600px;
  position: relative;
  aspect-ratio: 1/1;
}
.eink_ei_orbit .eink_ei_orbit_svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.eink_ei_orbit .eink_ei_orbit_lines line {
  stroke: #46c8ff;
  stroke-opacity: 0.28;
  stroke-width: 1.2;
}
.eink_ei_orbit .eink_ei_orbit_pulses line {
  stroke: #46c8ff;
  stroke-opacity: 0.75;
  stroke-width: 1.6;
  stroke-dasharray: 4 116;
  stroke-linecap: round;
  animation: ei_dash 6s linear infinite;
}
.eink_ei_orbit .eink_ei_orbit_ring {
  fill: none;
  stroke: rgba(159, 182, 255, 0.09);
  stroke-width: 1;
}
.eink_ei_orbit .eink_ei_orbit_ring_dashed {
  stroke: rgba(159, 182, 255, 0.14);
  stroke-dasharray: 2 7;
}

.eink_ei_node_center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  padding: 22px 18px 18px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(56, 0, 150, 0.35), rgba(11, 11, 24, 0.85));
  border: 1px solid rgba(159, 182, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 46px rgba(56, 0, 150, 0.55), inset 0 1px 0 rgba(245, 247, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.eink_ei_node_center img {
  width: 130px;
  height: auto;
  display: block;
}
.eink_ei_node_center span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #46c8ff;
}

.eink_ei_node {
  position: absolute;
  transform: translate(-50%, -50%);
  animation: ei_float 7s ease-in-out infinite;
}
.eink_ei_node .eink_ei_node_card {
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(11, 11, 24, 0.85);
  border: 1px solid rgba(159, 182, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: center;
}
.eink_ei_node .eink_ei_node_label {
  font-size: 14px;
  font-weight: 600;
  color: #f5f7ff;
}
.eink_ei_node .eink_ei_node_tag {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  color: #aeb4c8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eink_ei_node.eink_ei_node_i0 .eink_ei_node_card {
  border-color: rgba(70, 200, 255, 0.35);
  box-shadow: 0 0 18px rgba(70, 200, 255, 0.15);
}
.eink_ei_node.eink_ei_node_i4 .eink_ei_node_card {
  background: rgba(216, 30, 5, 0.1);
  border-color: rgba(216, 30, 5, 0.45);
}
.eink_ei_node.eink_ei_node_i1 {
  animation: ei_float2 8s ease-in-out infinite;
}
.eink_ei_node.eink_ei_node_i2 {
  animation: ei_float 9s ease-in-out infinite;
}
.eink_ei_node.eink_ei_node_i3 {
  animation: ei_float2 7.5s ease-in-out infinite;
}
.eink_ei_node.eink_ei_node_i4 {
  animation: ei_float 8.5s ease-in-out infinite;
}
.eink_ei_node.eink_ei_node_i5 {
  animation: ei_float2 9.5s ease-in-out infinite;
}

@media (max-width: 480px) {
  .eink_ei_hero .eink_ei_hero_inner {
    padding: 56px 20px 64px;
    gap: 40px;
  }
  .eink_ei_hero .eink_ei_hero_text {
    flex-basis: 100%;
    min-width: 0;
  }
  .eink_ei_hero .eink_ei_hero_heading {
    font-size: 34px;
    overflow-wrap: break-word;
  }
  .eink_ei_hero .eink_ei_hero_sub {
    font-size: 16px;
  }
  .eink_ei_orbit {
    flex-basis: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .eink_ei_node_center {
    width: 150px;
    padding: 16px 12px 12px;
  }
  .eink_ei_node_center img {
    width: 100px;
  }
  .eink_ei_node .eink_ei_node_card {
    padding: 8px 12px;
  }
  .eink_ei_node .eink_ei_node_label {
    font-size: 12.5px;
  }
}
.eink_timeline {
  padding: 96px 0;
}
.eink_timeline .eink_tl {
  position: relative;
  padding-left: 34px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.eink_timeline .eink_tl_spine {
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, #380096, #46c8ff 55%, transparent);
}
.eink_timeline .eink_tl_item {
  position: relative;
}
.eink_timeline .eink_tl_dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0b0b18;
  border: 2px solid #9fb6ff;
  box-shadow: 0 0 12px rgba(159, 182, 255, 0.4);
}
.eink_timeline .eink_tl_item_i0 .eink_tl_dot {
  border-color: #d81e05;
  box-shadow: 0 0 12px rgba(216, 30, 5, 0.5);
}
.eink_timeline .eink_tl_item_i2 .eink_tl_dot {
  border-color: #380096;
  box-shadow: 0 0 12px rgba(56, 0, 150, 0.7);
}
.eink_timeline .eink_tl_item_i3 .eink_tl_dot {
  border-color: #46c8ff;
  box-shadow: 0 0 12px rgba(70, 200, 255, 0.5);
}
.eink_timeline .eink_tl_item:last-child .eink_tl_dot {
  background: #46c8ff;
  border-color: #46c8ff;
  box-shadow: 0 0 16px rgba(70, 200, 255, 0.8);
}
.eink_timeline .eink_tl_head {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.eink_timeline .eink_tl_year {
  color: #46c8ff;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 15px;
  margin-right: 14px;
}
.eink_timeline .eink_tl_body {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #aeb4c8;
  max-width: 600px;
}

.eink_brand_cards {
  padding: 96px 0;
}
.eink_brand_cards .eink_bc_grid {
  display: grid;
  grid-template-columns: repeat(var(--bc-cols, 4), 1fr);
  gap: 22px;
}
.eink_brand_cards .eink_bc_card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(165deg, rgba(56, 0, 150, 0.16), rgba(11, 11, 24, 0.9));
  border: 1px solid rgba(159, 182, 255, 0.18);
  border-radius: 16px;
  padding: 28px;
  color: #f5f7ff;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.eink_brand_cards .eink_bc_card:hover {
  transform: translateY(-5px);
  border-color: rgba(70, 200, 255, 0.45);
  box-shadow: 0 14px 40px rgba(5, 5, 16, 0.6), 0 0 24px rgba(56, 0, 150, 0.35);
  text-decoration: none;
  color: #f5f7ff;
}
.eink_brand_cards .eink_bc_chip {
  height: 64px;
  border-radius: 10px;
  border: 1px dashed rgba(174, 180, 200, 0.35);
  background: rgba(245, 247, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
}
.eink_brand_cards .eink_bc_chip span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #aeb4c8;
}
.eink_brand_cards .eink_bc_chip.eink_bc_chip_img {
  border-style: solid;
  border-color: rgba(159, 182, 255, 0.18);
}
.eink_brand_cards .eink_bc_chip.eink_bc_chip_img img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  display: block;
}
.eink_brand_cards .eink_bc_card_eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #46c8ff;
}
.eink_brand_cards .eink_bc_card_title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #f5f7ff;
}
.eink_brand_cards .eink_bc_card_text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #aeb4c8;
}
.eink_brand_cards .eink_bc_panel {
  background: linear-gradient(150deg, rgba(56, 0, 150, 0.38), rgba(11, 11, 24, 0.92));
  border: 1px solid rgba(159, 182, 255, 0.32);
  border-radius: 18px;
  padding: 36px;
  margin-bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  box-shadow: 0 0 50px rgba(56, 0, 150, 0.3), inset 0 1px 0 rgba(245, 247, 255, 0.1);
}
.eink_brand_cards .eink_bc_panel .eink_bc_panel_chip {
  flex: 0 0 240px;
  height: 88px;
  border-radius: 12px;
}
.eink_brand_cards .eink_bc_panel .eink_bc_panel_chip span {
  font-size: 12.5px;
  color: #f5f7ff;
}
.eink_brand_cards .eink_bc_panel .eink_bc_panel_text {
  flex: 1 1 380px;
}
.eink_brand_cards .eink_bc_panel .eink_bc_panel_title {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 600;
  color: #f5f7ff;
}
.eink_brand_cards .eink_bc_panel .eink_bc_panel_body {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #aeb4c8;
  max-width: 620px;
}
.eink_brand_cards .eink_bc_panel .eink_bc_card_eyebrow {
  margin-bottom: 8px;
}

.eink_brand_cards.eink_bc_pulse .eink_bc_grid {
  gap: 18px;
}
.eink_brand_cards.eink_bc_pulse .eink_bc_card {
  background: rgba(5, 5, 16, 0.6);
  border-color: rgba(159, 182, 255, 0.16);
  border-radius: 14px;
  padding: 24px;
  gap: 0;
}
.eink_brand_cards.eink_bc_pulse .eink_bc_card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 30, 5, 0.5);
  box-shadow: none;
}
.eink_brand_cards.eink_bc_pulse .eink_bc_card_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.eink_brand_cards.eink_bc_pulse .eink_bc_card_eyebrow {
  font-size: 10.5px;
  color: #d81e05;
}
.eink_brand_cards.eink_bc_pulse .eink_bc_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #46c8ff;
  box-shadow: 0 0 10px rgba(70, 200, 255, 0.8);
  animation: ei_pulse 3s ease-in-out infinite;
  flex-shrink: 0;
}
.eink_brand_cards.eink_bc_pulse .eink_bc_chip {
  height: 44px;
  border-radius: 8px;
  margin-bottom: 14px;
}
.eink_brand_cards.eink_bc_pulse .eink_bc_chip span {
  font-size: 11px;
  letter-spacing: 0.08em;
}
.eink_brand_cards.eink_bc_pulse .eink_bc_card_title {
  margin: 0 0 8px;
  font-size: 19px;
}
.eink_brand_cards.eink_bc_pulse .eink_bc_card_text {
  font-size: 14.5px;
  line-height: 1.55;
}
.eink_brand_cards.eink_bc_pulse .eink_bc_card:nth-child(2) .eink_bc_dot {
  animation-duration: 3.4s;
}
.eink_brand_cards.eink_bc_pulse .eink_bc_card:nth-child(3) .eink_bc_dot {
  animation-duration: 2.8s;
}
.eink_brand_cards.eink_bc_pulse .eink_bc_card:nth-child(4) .eink_bc_dot {
  animation-duration: 3.2s;
}
.eink_brand_cards.eink_bc_pulse .eink_bc_card:nth-child(5) .eink_bc_dot {
  animation-duration: 3.6s;
}
.eink_brand_cards.eink_bc_pulse .eink_bc_card:nth-child(6) .eink_bc_dot {
  animation-duration: 3s;
}
.eink_brand_cards.eink_bc_pulse .eink_bc_card:nth-child(7) .eink_bc_dot {
  animation-duration: 2.6s;
}

@media (max-width: 1024px) {
  .eink_brand_cards .eink_bc_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .eink_brand_cards .eink_bc_grid {
    grid-template-columns: 1fr;
  }
  .eink_brand_cards, .eink_timeline {
    padding: 64px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .eink_ei_hero .eink_ei_hero_glow,
  .eink_ei_orbit .eink_ei_orbit_pulses line,
  .eink_ei_node,
  .eink_brand_cards.eink_bc_pulse .eink_bc_dot {
    animation: none;
  }
}
.eink_sp_hero {
  position: relative;
  overflow: hidden;
}
.eink_sp_hero .eink_sp_hero_inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 40px;
}
.eink_sp_hero .eink_sp_hero_text {
  flex: 1 1 480px;
  min-width: 0;
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eink_sp_hero .eink_sp_eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eink-color-primary, #1976d2);
}
.eink_sp_hero .eink_sp_hero_name {
  margin: 0 0 8px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.eink_sp_hero .eink_sp_hero_role {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--eink-color-primary, #1976d2);
}
.eink_sp_hero .eink_sp_hero_headline {
  margin: 0 0 14px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  font-weight: 600;
}
.eink_sp_hero .eink_sp_hero_support {
  margin: 0 0 28px;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.85;
}
.eink_sp_hero .eink_sp_hero_ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.eink_sp_btn_ghost.eink_sp_btn_ghost,
.eink_sp_btn_ghost.eink_sp_btn_ghost:visited {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--eink-color-primary, #1976d2);
  color: var(--eink-color-primary, #1976d2);
  border-radius: var(--eink-btn-radius, 8px);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}
.eink_sp_btn_ghost.eink_sp_btn_ghost:hover, .eink_sp_btn_ghost.eink_sp_btn_ghost:focus,
.eink_sp_btn_ghost.eink_sp_btn_ghost:visited:hover,
.eink_sp_btn_ghost.eink_sp_btn_ghost:visited:focus {
  background: var(--eink-color-primary, #1976d2);
  color: #fff;
  text-decoration: none;
}

.eink_sp_hero_split.sp_reverse .eink_sp_hero_inner {
  flex-direction: row-reverse;
  flex-wrap: wrap-reverse;
}

.eink_sp_hero_split .eink_sp_hero_media {
  flex: 1 1 380px;
  min-width: 300px;
  max-width: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--eink-border-radius, 12px) var(--eink-border-radius, 12px) 0 0;
}
.eink_sp_hero_split .eink_sp_hero_media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--eink-border-radius, 12px) var(--eink-border-radius, 12px) 0 0;
}

.eink_sp_hero_centered {
  background: linear-gradient(180deg, color-mix(in srgb, var(--eink-color-primary, #4a5bc7) 8%, var(--eink-color-bg, #fff)) 0%, var(--eink-color-bg, #fff) 100%);
}
.eink_sp_hero_centered .eink_sp_hero_text {
  flex: 1 1 100%;
  align-items: center;
  text-align: center;
  padding: 64px 0 56px;
}
.eink_sp_hero_centered .eink_sp_hero_avatar {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.eink_sp_hero_centered .eink_sp_hero_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.eink_sp_hero_centered .eink_sp_hero_name {
  font-size: clamp(32px, 4vw, 46px);
}
.eink_sp_hero_centered .eink_sp_hero_headline {
  max-width: 680px;
}
.eink_sp_hero_centered .eink_sp_hero_support {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.eink_sp_hero_centered .eink_sp_hero_ctas {
  justify-content: center;
}

.eink_sp_hero_split.sp_editorial .eink_sp_hero_media,
.eink_sp_hero_split.sp_editorial .eink_sp_hero_media img {
  border-radius: 0;
}
.eink_sp_hero_split.sp_editorial .eink_sp_hero_name {
  font-weight: 500;
  letter-spacing: 0;
}

.eink_sp_hero_fullbleed {
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #fff;
}
.eink_sp_hero_fullbleed .eink_sp_hero_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eink_sp_hero_fullbleed .eink_sp_hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 12, 18, 0.92) 20%, rgba(10, 12, 18, 0.35) 65%, rgba(10, 12, 18, 0.15));
}
.eink_sp_hero_fullbleed .eink_sp_hero_inner {
  position: relative;
  width: 100%;
}
.eink_sp_hero_fullbleed .eink_sp_hero_text {
  max-width: 640px;
}
.eink_sp_hero_fullbleed .eink_sp_hero_role {
  color: #fff;
  opacity: 0.92;
}
.eink_sp_hero_fullbleed .eink_sp_eyebrow {
  color: #fff;
  opacity: 0.85;
}

@media (max-width: 640px) {
  .eink_sp_hero .eink_sp_hero_text {
    padding: 48px 0 32px;
  }
  .eink_sp_hero_split .eink_sp_hero_media img {
    min-height: 320px;
    border-radius: var(--eink-border-radius, 12px);
  }
  .eink_sp_hero_fullbleed {
    min-height: 480px;
  }
}
.eink_sp_bio {
  padding: 72px 0;
}
.eink_sp_bio .eink_sp_bio_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  align-items: flex-start;
}
.eink_sp_bio .eink_sp_bio_text {
  flex: 1 1 520px;
  min-width: 0;
}
.eink_sp_bio .eink_sp_bio_text p {
  margin: 0 0 16px;
  font-size: 16.5px;
  line-height: 1.7;
}
.eink_sp_bio .eink_sp_bio_chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.eink_sp_bio .eink_sp_chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--eink-color-primary, #1976d2) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--eink-color-primary, #1976d2) 30%, transparent);
  font-size: 14px;
  font-weight: 600;
}
.eink_sp_bio .eink_sp_chip i {
  color: var(--eink-color-primary, #1976d2);
}
.eink_sp_bio .eink_sp_bio_media {
  flex: 0 1 340px;
  min-width: 260px;
  overflow: hidden;
  border-radius: var(--eink-border-radius, 12px);
  align-self: flex-start;
}
.eink_sp_bio .eink_sp_bio_media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--eink-border-radius, 12px);
  display: block;
}

.eink_sp_bio.sp_center .eink_sp_bio_grid {
  justify-content: center;
}
.eink_sp_bio.sp_center .eink_sp_bio_text {
  flex: 0 1 760px;
  text-align: center;
}
.eink_sp_bio.sp_center .eink_sp_bio_chips {
  justify-content: center;
}
.eink_sp_bio.sp_center .eink_sp_bio_media {
  display: none;
}

.eink_dealer_trust {
  padding: 56px 0;
}
.eink_dealer_trust .eink_dt_band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--eink-border-radius, 12px);
  background: color-mix(in srgb, var(--eink-color-primary, #1976d2) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--eink-color-primary, #1976d2) 22%, transparent);
}
.eink_dealer_trust .eink_dt_identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.eink_dealer_trust .eink_dt_kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
}
.eink_dealer_trust .eink_dt_name {
  font-size: 22px;
  font-weight: 800;
}
.eink_dealer_trust .eink_dt_address {
  font-size: 14.5px;
  opacity: 0.8;
}
.eink_dealer_trust .eink_dt_address i {
  color: var(--eink-color-primary, #1976d2);
}
.eink_dealer_trust .eink_dt_actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.eink_dealer_trust .eink_dt_phone {
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}
.eink_dealer_trust .eink_dt_phone i {
  color: var(--eink-color-primary, #1976d2);
}
.eink_dealer_trust .eink_dt_hours {
  font-size: 14.5px;
  opacity: 0.8;
  white-space: nowrap;
}
.eink_dealer_trust .eink_dt_hours i {
  color: var(--eink-color-primary, #1976d2);
}

@media (max-width: 640px) {
  .eink_sp_bio, .eink_dealer_trust {
    padding: 48px 0;
  }
  .eink_dealer_trust .eink_dt_band {
    padding: 22px 20px;
  }
}
.eink_spf {
  padding: 72px 0;
}
.eink_spf .eink_spf_item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.eink_spf .eink_spf_item:has(.vehicle_card_horizontal) .eink_spf_label {
  left: auto;
  right: 10px;
}
.eink_spf .eink_spf_label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--eink-color-primary, #1976d2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.eink_spf .eink_spf_label i {
  font-size: 11px;
}
.eink_spf .eink_spf_note {
  margin: 10px 4px 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: inherit;
  opacity: 0.75;
}
.eink_spf .eink_spf_note .eink_spf_note_kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eink-color-primary, #1976d2);
  margin-bottom: 2px;
}
.eink_spf .eink_spf_empty {
  text-align: center;
  padding: 32px 20px;
  border: 1px dashed currentColor;
  border-radius: var(--eink-border-radius, 10px);
  color: inherit;
  opacity: 0.65;
  font-size: 15px;
}
.eink_spf .eink_spf_listing_card .vehicle_card_meta {
  font-size: 13.5px;
  color: #64748b;
}
.eink_spf .eink_spf_spotlist {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.eink_spf .eink_spf_spot {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.eink_spf .eink_spf_spot .eink_spf_spot_media {
  flex: 1 1 480px;
  min-width: 300px;
  display: block;
}
.eink_spf .eink_spf_spot .eink_spf_spot_media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  border-radius: var(--eink-border-radius, 0);
}
.eink_spf .eink_spf_spot .eink_spf_spot_body {
  flex: 1 1 340px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.eink_spf .eink_spf_spot .eink_spf_spot_title {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
}
.eink_spf .eink_spf_spot .eink_spf_spot_title a {
  color: inherit;
  text-decoration: none;
}
.eink_spf .eink_spf_spot .eink_spf_spot_title a:hover {
  text-decoration: underline;
}
.eink_spf .eink_spf_spot .eink_spf_spot_note {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.8;
}
.eink_spf .eink_spf_spot .eink_spf_spot_meta {
  font-size: 13px;
  opacity: 0.6;
}
.eink_spf .eink_spf_spot .eink_spf_spot_row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.eink_spf .eink_spf_spot .eink_spf_spot_price {
  font-size: 24px;
  font-weight: 700;
}
.eink_spf .eink_spf_spot .eink_spf_spot_cta,
.eink_spf .eink_spf_spot .eink_spf_spot_cta:visited {
  font-size: 14px;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid var(--eink-color-primary, #111);
  padding-bottom: 2px;
}
.eink_spf .eink_spf_spot .eink_spf_spot_cta:hover,
.eink_spf .eink_spf_spot .eink_spf_spot_cta:visited:hover {
  color: var(--eink-color-primary, #111);
  text-decoration: none;
}
.eink_spf .eink_spf_spot:nth-child(even) {
  flex-direction: row-reverse;
}

.eink_spf.sp_dark .vehicle_card,
.eink_spf.sp_dark .vehicle_card:hover {
  background-color: color-mix(in srgb, var(--eink-color-secondary, #10141b) 72%, transparent);
  border-color: rgba(255, 255, 255, 0.16);
  color: inherit;
}
.eink_spf.sp_dark .vehicle_card_title,
.eink_spf.sp_dark .vehicle_card .vehicle_title {
  color: inherit;
}
.eink_spf.sp_dark .vehicle_card_price,
.eink_spf.sp_dark .vehicle_card .vehicle_price {
  color: var(--eink-color-primary, #c9a227);
}
.eink_spf.sp_dark .vehicle_card_meta,
.eink_spf.sp_dark .vehicle_card .vehicle_details,
.eink_spf.sp_dark .vehicle_card .vehicle_specs {
  color: inherit;
  opacity: 0.72;
}
.eink_spf.sp_dark .vehicle_card_horizontal,
.eink_spf.sp_dark .vehicle_card_horizontal:hover {
  background-color: color-mix(in srgb, var(--eink-color-secondary, #10141b) 72%, transparent);
  border-color: rgba(255, 255, 255, 0.16);
  color: inherit;
}
.eink_spf.sp_dark .vehicle_card_horizontal .vehicle_horizontal_title {
  color: inherit;
}
.eink_spf.sp_dark .vehicle_card_horizontal .vehicle_horizontal_image {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.14);
}
.eink_spf.sp_dark .vehicle_card_horizontal .vehicle_horizontal_payment .payment_frequency {
  color: inherit;
  opacity: 0.7;
}
.eink_spf.sp_dark .vehicle_card_horizontal .vehicle_horizontal_payment .payment_value {
  color: inherit;
}
.eink_spf.sp_dark .vehicle_card_horizontal .vehicle_horizontal_price .price_value {
  color: var(--eink-color-primary, #c9a227);
}
.eink_spf.sp_dark .vehicle_card_horizontal .vehicle_horizontal_price .price_label {
  color: inherit;
  opacity: 0.65;
}
.eink_spf.sp_dark .vehicle_card_horizontal .vehicle_specs_container {
  background-color: rgba(255, 255, 255, 0.06);
}
.eink_spf.sp_dark .vehicle_card_horizontal .vehicle_specs_table tr:nth-child(odd) {
  background-color: transparent;
}
.eink_spf.sp_dark .vehicle_card_horizontal .vehicle_specs_table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.07);
}
.eink_spf.sp_dark .vehicle_card_horizontal .vehicle_specs_table td {
  color: inherit;
}
.eink_spf.sp_dark .vehicle_card_horizontal .vehicle_specs_table td:first-child {
  color: inherit;
  opacity: 0.65;
}
.eink_spf.sp_dark .vehicle_card_horizontal .vehicle_horizontal_features {
  background-color: rgba(255, 255, 255, 0.07);
  border-left-color: var(--eink-color-primary, #c9a227);
  color: inherit;
}

@media (max-width: 640px) {
  .eink_spf {
    padding: 48px 0;
  }
}
.eink_sp_vdpband {
  background: color-mix(in srgb, var(--eink-color-primary, #1976d2) 7%, var(--eink-color-bg, #fff));
  border-bottom: 1px solid color-mix(in srgb, var(--eink-color-primary, #1976d2) 22%, transparent);
}
.eink_sp_vdpband .eink_sp_vdpband_inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 0;
}
.eink_sp_vdpband .eink_sp_vdpband_photo {
  width: 52px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}
.eink_sp_vdpband .eink_sp_vdpband_id {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  margin-right: auto;
}
.eink_sp_vdpband .eink_sp_vdpband_name {
  font-weight: 800;
  font-size: 16.5px;
}
.eink_sp_vdpband .eink_sp_vdpband_role {
  font-size: 13px;
  color: #64748b;
}
.eink_sp_vdpband .eink_sp_vdpband_ctas {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.eink_sp_vdpband .eink_sp_vdpband_ctas .btn {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .eink_sp_vdpband .eink_sp_vdpband_inner {
    padding: 12px 0;
  }
  .eink_sp_vdpband .eink_sp_vdpband_id {
    flex-basis: 100%;
    order: -1;
  }
}
.eink_sp_dock {
  display: none;
}

@media (max-width: 768px) {
  .eink_sp_dock {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    background: var(--eink-color-secondary, #14181f);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.22);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .eink_sp_dock_btn,
  .eink_sp_dock_btn:visited {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 6px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }
  .eink_sp_dock_btn:last-child,
  .eink_sp_dock_btn:visited:last-child {
    border-right: 0;
  }
  .eink_sp_dock_btn:hover, .eink_sp_dock_btn:focus,
  .eink_sp_dock_btn:visited:hover,
  .eink_sp_dock_btn:visited:focus {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
  }
  .eink_sp_dock_btn i,
  .eink_sp_dock_btn:visited i {
    font-size: 13px;
    opacity: 0.85;
  }
  .eink_sp_dock_primary,
  .eink_sp_dock_primary:visited {
    background: var(--eink-color-primary, #1976d2);
  }
  .eink_sp_dock_primary:hover, .eink_sp_dock_primary:focus,
  .eink_sp_dock_primary:visited:hover,
  .eink_sp_dock_primary:visited:focus {
    background: color-mix(in srgb, var(--eink-color-primary, #1976d2) 88%, #000);
  }
  body:has(.eink_sp_dock) {
    padding-bottom: 54px;
  }
}
.eink_listing_page {
  padding: 32px 0 72px;
}
.eink_listing_page .eink_listing_breadcrumb {
  font-size: 13px;
  margin-bottom: 20px;
  color: #64748b;
}
.eink_listing_page .eink_listing_breadcrumb a {
  color: var(--eink-color-primary, #1976d2);
}
.eink_listing_page .eink_listing_breadcrumb span[aria-hidden] {
  margin: 0 6px;
}
.eink_listing_page .eink_listing_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
}
.eink_listing_page .eink_listing_media {
  flex: 1 1 520px;
  min-width: 0;
}
.eink_listing_page .eink_listing_main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--eink-border-radius, 10px);
  background: #eef1f5;
  display: block;
}
.eink_listing_page .eink_listing_thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.eink_listing_page .eink_listing_thumbs .eink_listing_thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: none;
}
.eink_listing_page .eink_listing_thumbs .eink_listing_thumb.active {
  border-color: var(--eink-color-primary, #1976d2);
}
.eink_listing_page .eink_listing_thumbs .eink_listing_thumb img {
  width: 88px;
  height: 66px;
  object-fit: cover;
  display: block;
}
.eink_listing_page .eink_listing_info {
  flex: 1 1 380px;
  min-width: 300px;
}
.eink_listing_page .eink_listing_soldband {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: #fee2e2;
  color: #991b1b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.eink_listing_page .eink_listing_title {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}
.eink_listing_page .eink_listing_price {
  font-size: 30px;
  font-weight: 800;
  color: var(--eink-color-primary, #1976d2);
  margin-bottom: 18px;
}
.eink_listing_page .eink_listing_specs {
  margin: 0 0 24px;
  border-top: 1px solid #e2e8f0;
}
.eink_listing_page .eink_listing_specs > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 2px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14.5px;
}
.eink_listing_page .eink_listing_specs dt {
  color: #64748b;
  margin: 0;
}
.eink_listing_page .eink_listing_specs dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}
.eink_listing_page .eink_listing_contact {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: var(--eink-border-radius, 10px);
  background: #f8fafc;
}
.eink_listing_page .eink_listing_contact .eink_listing_contact_photo {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}
.eink_listing_page .eink_listing_contact .eink_listing_contact_body {
  min-width: 0;
}
.eink_listing_page .eink_listing_contact .eink_listing_contact_name {
  display: block;
  font-weight: 800;
  font-size: 17px;
}
.eink_listing_page .eink_listing_contact .eink_listing_contact_role {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin: 2px 0 12px;
}
.eink_listing_page .eink_listing_contact .eink_listing_contact_ctas {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.eink_listing_page .eink_listing_desc {
  max-width: 760px;
  margin-top: 36px;
}
.eink_listing_page .eink_listing_desc h2 {
  font-size: 22px;
  margin: 0 0 12px;
}
.eink_listing_page .eink_listing_desc p {
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.eink_listing_page .eink_listing_back {
  margin-top: 28px;
  font-size: 14px;
}

.eink_mw {
  padding: 36px 0 90px;
  font-variant-numeric: tabular-nums;
}

.eink_mw_auth {
  background: #14181F;
  color: #FFFFFF;
  padding: 64px 0 84px;
}

.eink_mw_authwrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .eink_mw_authwrap {
    grid-template-columns: 1fr;
  }
}

.eink_mw_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 109, 243, 0.18);
  border: 1px solid rgba(27, 109, 243, 0.45);
  color: #9CC1FF;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.eink_mw_authintro h1 {
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 800;
}
.eink_mw_authintro > p {
  margin: 0 0 20px;
  font-size: 15.5px;
  line-height: 1.65;
  color: #C6CDD8;
  max-width: 460px;
}

.eink_mw_ticks {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.eink_mw_ticks li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 13.5px;
  color: #AEB8C6;
  margin-bottom: 9px;
}
.eink_mw_ticks li i {
  color: #34C273;
  font-size: 12px;
}

.eink_mw_notdealer {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  color: #E8B75C;
  background: rgba(232, 183, 92, 0.1);
  border: 1px solid rgba(232, 183, 92, 0.3);
  border-radius: 9px;
  padding: 9px 13px;
  margin: 0;
}

.eink_mw_authforms {
  min-width: 0;
}

.eink_mw_authcard {
  position: relative;
  background: #FFFFFF;
  color: #14181F;
  border-radius: 16px;
  padding: 26px 26px 20px;
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.35);
}
.eink_mw_authcard h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
}
.eink_mw_authcard > p {
  margin: 0 0 16px;
  font-size: 13px;
  color: #5B6472;
  line-height: 1.55;
}
.eink_mw_authcard form label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 12px;
}
.eink_mw_authcard form label span {
  font-weight: 500;
  color: #7A8494;
}
.eink_mw_authcard form label input {
  display: block;
  width: 100%;
  margin-top: 5px;
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
}
.eink_mw_authcard form label input:focus {
  outline: none;
  border-color: #1B6DF3;
}
.eink_mw_authcard form button[type=submit] {
  width: 100%;
  background: #1B6DF3;
  color: #FFFFFF;
  border: 0;
  border-radius: 10px;
  padding: 12px 0;
  font-size: 14.5px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  margin-top: 4px;
}
.eink_mw_authcard form button[type=submit]:hover {
  background: #14181F;
}
.eink_mw_authcard form button[type=submit]:disabled {
  opacity: 0.6;
  cursor: default;
}

.eink_mw_authswitch {
  display: block;
  width: 100%;
  background: none;
  border: 0;
  color: #1B6DF3;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  padding: 12px 0 2px;
  text-align: center;
}
.eink_mw_authswitch:hover {
  text-decoration: underline;
}

.eink_mw_authnote {
  min-height: 18px;
  margin: 12px 4px 0;
  font-size: 13px;
  font-weight: 600;
  color: #FF9C9C;
}

.eink_mw_authpriv {
  margin: 10px 4px 0;
  font-size: 12px;
  line-height: 1.6;
  color: #7A8494;
}

.eink_mw_inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.eink_mw_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.eink_mw_head h1 {
  margin: 0 0 4px;
  font-size: 27px;
  font-weight: 800;
}

.eink_mw_sub {
  margin: 0;
  font-size: 13px;
  color: #5B6472;
}
.eink_mw_sub a {
  color: #1B6DF3;
  text-decoration: none;
}
.eink_mw_sub a:hover {
  text-decoration: underline;
}

.eink_mw_headbtns {
  display: flex;
  gap: 8px;
}
.eink_mw_headbtns a,
.eink_mw_headbtns button {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  color: #39414D;
  border: 1px solid #E4E7EC;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  padding: 8px 14px;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
}
.eink_mw_headbtns a:hover,
.eink_mw_headbtns button:hover {
  border-color: #1B6DF3;
  color: #1B6DF3;
}

.eink_mw_grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 22px;
  align-items: start;
}
@media (max-width: 1000px) {
  .eink_mw_grid {
    grid-template-columns: 1fr;
  }
}

.eink_mw_listbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #5B6472;
}
.eink_mw_listbar label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #39414D;
}
.eink_mw_listbar label select {
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  padding: 7px 10px;
  font-size: 12.5px;
  font-family: inherit;
  background: #FFFFFF;
}
.eink_mw_listbar label select:focus {
  outline: none;
  border-color: #1B6DF3;
}

.eink_mw_savedgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.eink_mw_vc .eink_mw_remove {
  flex-shrink: 0;
  background: none;
  border: 0;
  color: #AEB8C6;
  font-size: 15px;
  cursor: pointer;
  padding: 2px 4px;
}
.eink_mw_vc .eink_mw_remove:hover {
  color: #B42318;
}
.eink_mw_vc .eink_mw_note {
  width: 100%;
  margin-top: 10px;
  border: 1px dashed #E4E7EC;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12.5px;
  font-family: inherit;
  color: #39414D;
  background: #FBFBFC;
  resize: vertical;
  min-height: 34px;
}
.eink_mw_vc .eink_mw_note:focus {
  outline: none;
  border-color: #1B6DF3;
  border-style: solid;
}

.eink_mw_delta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 7px;
  padding: 6px 9px;
  margin: 8px 0 2px;
}
.eink_mw_delta.eink_mw_delta_down {
  color: #15803D;
  background: #ECFDF5;
}
.eink_mw_delta.eink_mw_delta_up {
  color: #B45309;
  background: #FFF7E6;
}
.eink_mw_delta.eink_mw_delta_sold {
  color: #5B6472;
  background: #F0F2F5;
}

.eink_mw_sold .eink_vc_body {
  padding-top: 16px;
}
.eink_mw_sold .eink_mw_soldhelp {
  margin: 8px 0 0;
  font-size: 12.5px;
  color: #5B6472;
}

.eink_mw_empty {
  text-align: center;
  background: #FFFFFF;
  border: 1px dashed #E4E7EC;
  border-radius: 16px;
  padding: 56px 24px;
}
.eink_mw_empty h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
}
.eink_mw_empty p {
  margin: 0 auto 18px;
  font-size: 13.5px;
  color: #5B6472;
  max-width: 380px;
  line-height: 1.6;
}
.eink_mw_empty .eink_mw_empty_ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #F0F6FF;
  display: grid;
  place-items: center;
  color: #1B6DF3;
  font-size: 22px;
  margin: 0 auto 14px;
}

.eink_mw_cta {
  display: inline-block;
  background: #14181F;
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 9px;
  text-decoration: none;
}
.eink_mw_cta:hover {
  background: #1B6DF3;
  color: #FFFFFF;
}

.eink_mw_side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eink_mw_sidecard {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 18px 18px 16px;
}
.eink_mw_sidecard h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 8px;
  font-size: 14.5px;
  font-weight: 800;
}
.eink_mw_sidecard h3 i {
  color: #1B6DF3;
  font-size: 13px;
}
.eink_mw_sidecard p {
  margin: 0 0 12px;
  font-size: 13px;
  color: #5B6472;
  line-height: 1.6;
}
.eink_mw_sidecard p:last-child {
  margin-bottom: 0;
}

.eink_mw_sideai {
  background: #F0F6FF;
  border-color: #9CC1FF;
}

.eink_mw_setgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
  max-width: 900px;
}
@media (max-width: 800px) {
  .eink_mw_setgrid {
    grid-template-columns: 1fr;
  }
}

.eink_mw_setcard {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 22px;
}
.eink_mw_setcard h2 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 800;
}
.eink_mw_setcard > p {
  margin: 0 0 14px;
  font-size: 13px;
  color: #5B6472;
  line-height: 1.6;
}
.eink_mw_setcard form label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 12px;
}
.eink_mw_setcard form label span {
  font-weight: 500;
  color: #7A8494;
}
.eink_mw_setcard form label input {
  display: block;
  width: 100%;
  margin-top: 5px;
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-family: inherit;
}
.eink_mw_setcard form label input:focus {
  outline: none;
  border-color: #1B6DF3;
}
.eink_mw_setcard form label input:disabled {
  background: #F0F2F5;
  color: #7A8494;
}
.eink_mw_setcard form button[type=submit] {
  background: #14181F;
  color: #FFFFFF;
  border: 0;
  border-radius: 9px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}
.eink_mw_setcard form button[type=submit]:hover {
  background: #1B6DF3;
}

.eink_mw_claim {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 18px;
}
.eink_mw_claim .eink_mw_claim_head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.eink_mw_claim .eink_mw_claim_head h3 {
  margin: 0 0 4px;
  font-size: 15px;
}
.eink_mw_claim .eink_mw_claim_head p {
  margin: 0;
  font-size: 13px;
  color: #5B6472;
  line-height: 1.55;
}
.eink_mw_claim .eink_mw_claim_ico {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #F0F6FF;
  color: #1B6DF3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.eink_mw_claim .eink_mw_cta2 {
  margin-top: 12px;
}
.eink_mw_claim .eink_mw_claim_locked {
  margin: 12px 0 0;
  font-size: 13px;
  color: #7A8494;
}
.eink_mw_claim .eink_mw_claim_locked a {
  color: #1B6DF3;
  font-weight: 700;
}
.eink_mw_claim .eink_mw_setnote {
  display: block;
  margin-top: 10px;
}

.eink_mw_claim_list {
  margin-top: 8px;
}
.eink_mw_claim_list .eink_mw_claim_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid #F0F2F5;
  flex-wrap: wrap;
}
.eink_mw_claim_list .eink_mw_claim_meta {
  min-width: 0;
}
.eink_mw_claim_list .eink_mw_claim_meta strong {
  display: block;
  font-size: 14px;
}
.eink_mw_claim_list .eink_mw_claim_meta span {
  display: block;
  font-size: 12.5px;
  color: #5B6472;
  margin-top: 2px;
}
.eink_mw_claim_list .eink_mw_claim_meta .eink_mw_pill {
  display: inline-flex;
  margin-top: 6px;
}
.eink_mw_claim_list .eink_mw_claim_btns {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.eink_mw_claim_list .eink_mw_claim_btns button:not(.eink_mw_cta2) {
  background: none;
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  color: #5B6472;
  cursor: pointer;
}
.eink_mw_claim_list .eink_mw_claim_btns button:not(.eink_mw_cta2):hover {
  border-color: #98A1AE;
}
.eink_mw_claim_list .eink_mw_claim_btns button:not(.eink_mw_cta2):disabled {
  opacity: 0.5;
}

.eink_mw_verifyrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -4px 0 14px;
  flex-wrap: wrap;
}
.eink_mw_verifyrow .eink_mw_verifybtn {
  background: none;
  border: 0;
  color: #1B6DF3;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}
.eink_mw_verifyrow .eink_mw_verifybtn:hover {
  text-decoration: underline;
}
.eink_mw_verifyrow .eink_mw_verifybtn:disabled {
  opacity: 0.5;
}

.eink_mw_check {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  font-weight: 500 !important;
  font-size: 12.5px !important;
  color: #39414D;
  line-height: 1.5;
}
.eink_mw_check input[type=checkbox] {
  width: auto !important;
  margin-top: 2px !important;
}

.eink_mw_danger {
  border-color: #F3C1BD;
}
.eink_mw_danger form button[type=submit] {
  background: #B42318;
}
.eink_mw_danger form button[type=submit]:hover {
  background: #7F1710;
}

.eink_mw_setnote {
  display: inline-block;
  margin-left: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: #15803D;
}

.eink_mw_danger .eink_mw_setnote {
  color: #B42318;
}

.eink_mw_apptrow {
  border-top: 1px solid #F0F2F5;
  padding: 11px 0 10px;
  font-size: 12.5px;
}
.eink_mw_apptrow:first-child {
  border-top: 0;
  padding-top: 2px;
}
.eink_mw_apptrow strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}
.eink_mw_apptrow .eink_mw_apptdealer {
  display: block;
  color: #5B6472;
  margin-bottom: 5px;
}
.eink_mw_apptrow .eink_mw_apptpref {
  display: block;
  color: #7A8494;
  font-size: 11.5px;
  margin-top: 4px;
}
.eink_mw_apptrow .eink_mw_apptcancel {
  background: none;
  border: 0;
  color: #B42318;
  font-size: 11.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  padding: 4px 0 0;
}
.eink_mw_apptrow .eink_mw_apptcancel:hover {
  text-decoration: underline;
}
.eink_mw_apptrow .eink_mw_apptconfirm {
  display: block;
  background: none;
  border: 0;
  color: #15803D;
  font-size: 11.5px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  padding: 6px 0 0;
}
.eink_mw_apptrow .eink_mw_apptconfirm:hover {
  text-decoration: underline;
}
.eink_mw_apptrow.eink_mw_apptrow_off {
  opacity: 0.55;
}

.eink_mw_pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 9px;
}
.eink_mw_pill.eink_mw_pill_ok {
  background: #ECFDF5;
  color: #15803D;
}
.eink_mw_pill.eink_mw_pill_wait {
  background: #FFF7E6;
  color: #B45309;
}
.eink_mw_pill.eink_mw_pill_off {
  background: #F0F2F5;
  color: #5B6472;
}

.eink_mw_appt_btn i {
  margin-right: 6px;
}

.eink_mw_modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 24, 31, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.eink_mw_modal[hidden] {
  display: none;
}

.eink_mw_modal_card {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 26px 26px 22px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}
.eink_mw_modal_card h2 {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 800;
}
.eink_mw_modal_card .eink_mw_modal_vehicle {
  margin: 0 0 16px;
  font-size: 13px;
  color: #5B6472;
}
.eink_mw_modal_card .eink_mw_modal_close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: 0;
  font-size: 22px;
  color: #AEB8C6;
  cursor: pointer;
}
.eink_mw_modal_card .eink_mw_modal_close:hover {
  color: #14181F;
}
.eink_mw_modal_card form label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 12px;
}
.eink_mw_modal_card form label span {
  font-weight: 500;
  color: #7A8494;
}
.eink_mw_modal_card form label input,
.eink_mw_modal_card form label select,
.eink_mw_modal_card form label textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-family: inherit;
  background: #FFFFFF;
}
.eink_mw_modal_card form label input:focus,
.eink_mw_modal_card form label select:focus,
.eink_mw_modal_card form label textarea:focus {
  outline: none;
  border-color: #1B6DF3;
}
.eink_mw_modal_card form label textarea {
  resize: vertical;
}
.eink_mw_modal_card form button[type=submit] {
  width: 100%;
  background: #1B6DF3;
  color: #FFFFFF;
  border: 0;
  border-radius: 10px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
}
.eink_mw_modal_card form button[type=submit]:hover {
  background: #14181F;
}
.eink_mw_modal_card form button[type=submit]:disabled {
  opacity: 0.6;
  cursor: default;
}
.eink_mw_modal_card .eink_mw_modal_row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
}
.eink_mw_modal_card .eink_mw_modal_consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 11.5px;
  line-height: 1.55;
  color: #5B6472;
  background: #F7F9FC;
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  padding: 10px 12px;
  margin: 4px 0 14px;
}
.eink_mw_modal_card .eink_mw_modal_consent i {
  color: #1B6DF3;
  margin-top: 2px;
}

.eink_mw_thread {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 16px;
  max-width: 760px;
}

.eink_mw_thread_head {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  margin-bottom: 12px;
}
.eink_mw_thread_head i {
  color: #1B6DF3;
}
.eink_mw_thread_head span {
  margin-left: auto;
  font-size: 12px;
  color: #7A8494;
}

.eink_mw_thread_msgs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.eink_mw_msg {
  max-width: 85%;
}
.eink_mw_msg .eink_mw_msg_meta {
  display: block;
  font-size: 11px;
  color: #7A8494;
  margin-bottom: 3px;
}
.eink_mw_msg .eink_mw_msg_body {
  background: #F0F2F5;
  border-radius: 12px 12px 12px 3px;
  padding: 10px 13px;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-line;
  word-break: break-word;
  max-height: 200px;
  overflow-y: auto;
}
.eink_mw_msg.eink_mw_msg_you {
  align-self: flex-end;
  text-align: right;
}
.eink_mw_msg.eink_mw_msg_you .eink_mw_msg_body {
  background: #14181F;
  color: #FFFFFF;
  border-radius: 12px 12px 3px 12px;
  text-align: left;
}

.eink_mw_reply {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border-top: 1px solid #F0F2F5;
  padding-top: 12px;
}
.eink_mw_reply textarea {
  flex: 1;
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
}
.eink_mw_reply textarea:focus {
  outline: none;
  border-color: #1B6DF3;
}
.eink_mw_reply button {
  background: #1B6DF3;
  color: #FFFFFF;
  border: 0;
  border-radius: 9px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}
.eink_mw_reply button:hover {
  background: #14181F;
}
.eink_mw_reply button:disabled {
  opacity: 0.6;
  cursor: default;
}

.eink_mw_routebar {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.eink_mw_routebar label {
  font-size: 12.5px;
  font-weight: 700;
}
.eink_mw_routebar label span {
  font-weight: 500;
  color: #7A8494;
}
.eink_mw_routebar label input {
  display: block;
  margin-top: 5px;
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-family: inherit;
  min-width: 180px;
}
.eink_mw_routebar label input:focus {
  outline: none;
  border-color: #1B6DF3;
}
.eink_mw_routebar .eink_mw_routebar_btns {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.eink_mw_routebar .eink_mw_routebar_btns .eink_mw_cta {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 13.5px;
}
.eink_mw_routebar .eink_mw_routebar_btns .eink_mw_cta_maps {
  background: #1B6DF3;
}

.eink_mw_route_h3 {
  margin: 0 0 10px;
  font-size: 15.5px;
  font-weight: 800;
}
.eink_mw_route_h3 .eink_mw_soft {
  font-size: 12px;
  font-weight: 500;
  color: #7A8494;
}

.eink_mw_stoplist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.eink_mw_stop {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 12px;
  padding: 14px 16px;
}
.eink_mw_stop .eink_mw_stop_n {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #14181F;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.eink_mw_stop .eink_mw_stop_body {
  flex: 1;
  min-width: 0;
}
.eink_mw_stop .eink_mw_stop_body strong {
  display: block;
  font-size: 14px;
}
.eink_mw_stop .eink_mw_stop_body .eink_mw_stop_city {
  display: block;
  font-size: 12px;
  color: #5B6472;
  margin-top: 2px;
}
.eink_mw_stop .eink_mw_stop_body .eink_mw_stop_city i {
  color: #1B6DF3;
  margin-right: 5px;
}
.eink_mw_stop .eink_mw_stop_body .eink_mw_stop_veh {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #1B6DF3;
  margin-top: 3px;
}
.eink_mw_stop .eink_mw_stop_time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  margin-top: 8px;
}
.eink_mw_stop .eink_mw_stop_time input {
  border: 1px solid #E4E7EC;
  border-radius: 7px;
  padding: 5px 9px;
  font-size: 12px;
  font-family: inherit;
  width: 110px;
}
.eink_mw_stop .eink_mw_stop_time input:focus {
  outline: none;
  border-color: #1B6DF3;
}
.eink_mw_stop .eink_mw_stop_btns {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.eink_mw_stop .eink_mw_stop_btns button {
  width: 28px;
  height: 26px;
  background: #F0F2F5;
  border: 0;
  border-radius: 7px;
  color: #39414D;
  font-size: 11px;
  cursor: pointer;
}
.eink_mw_stop .eink_mw_stop_btns button:hover:not(:disabled) {
  background: #1B6DF3;
  color: #FFFFFF;
}
.eink_mw_stop .eink_mw_stop_btns button:disabled {
  opacity: 0.35;
  cursor: default;
}

.eink_mw_cta2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #39414D;
  border: 1px solid #E4E7EC;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  padding: 9px 16px;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
}
.eink_mw_cta2:hover {
  border-color: #1B6DF3;
  color: #1B6DF3;
}

.eink_mw_rtsaved {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #F0F2F5;
  padding: 10px 0;
  font-size: 12.5px;
}
.eink_mw_rtsaved:first-child {
  border-top: 0;
  padding-top: 0;
}
.eink_mw_rtsaved strong {
  display: block;
  font-size: 12.5px;
}
.eink_mw_rtsaved span {
  display: block;
  color: #7A8494;
  font-size: 11.5px;
  margin-top: 2px;
}
.eink_mw_rtsaved button {
  flex-shrink: 0;
  background: #F0F6FF;
  border: 1px solid #9CC1FF;
  color: #1B6DF3;
  font-size: 11.5px;
  font-weight: 700;
  font-family: inherit;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}
.eink_mw_rtsaved button:hover {
  background: #1B6DF3;
  color: #FFFFFF;
}

.eink_mw_navbadge {
  display: inline-block;
  margin-left: 6px;
  background: #1B6DF3;
  color: #FFFFFF;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1;
  padding: 3px 7px 4px;
  border-radius: 999px;
  vertical-align: 2px;
}

.eink_mw_nudge {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 900;
  max-width: 360px;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
}
.eink_mw_nudge strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  margin-bottom: 5px;
}
.eink_mw_nudge strong i {
  color: #1B6DF3;
}
.eink_mw_nudge p {
  margin: 0 0 11px;
  font-size: 12.5px;
  color: #5B6472;
  line-height: 1.55;
}
.eink_mw_nudge .eink_mw_nudge_btns {
  display: flex;
  gap: 8px;
}
.eink_mw_nudge .eink_mw_nudge_btns a {
  background: #1B6DF3;
  color: #FFFFFF;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
}
.eink_mw_nudge .eink_mw_nudge_btns a:hover {
  background: #14181F;
}
.eink_mw_nudge .eink_mw_nudge_btns button {
  background: none;
  border: 0;
  color: #5B6472;
  font-size: 12.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  padding: 8px 10px;
}
.eink_mw_nudge .eink_mw_nudge_btns button:hover {
  color: #14181F;
}
.eink_mw_nudge .eink_mw_nudge_priv {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: #7A8494;
}
@media (max-width: 600px) {
  .eink_mw_nudge {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}

.eink_dlr_crumbwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 20px 10px;
  font-size: 12.5px;
}

.eink_dlr_crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7A8494;
}
.eink_dlr_crumb a {
  color: #1B6DF3;
  text-decoration: none;
}
.eink_dlr_crumb a:hover {
  text-decoration: underline;
}
.eink_dlr_crumb strong {
  color: #14181F;
}

.eink_dlr_backlink {
  color: #5B6472;
  text-decoration: none;
  font-weight: 600;
}
.eink_dlr_backlink:hover {
  color: #1B6DF3;
}

.eink_dlr_band {
  background: #14181F;
  color: #FFFFFF;
}

.eink_dlr_band_inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 26px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.eink_dlr_identity {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.eink_dlr_identity .eink_dlr_logo {
  max-height: 64px;
  max-width: 220px;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 6px 10px;
  flex-shrink: 0;
}
.eink_dlr_identity h1, .eink_dlr_identity .eink_dlr_bandname {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
}
.eink_dlr_identity .eink_dlr_tagline {
  margin: 3px 0 0;
  font-size: 13px;
  color: #AEB8C6;
}
.eink_dlr_identity .eink_dlr_meta {
  margin: 6px 0 0;
  font-size: 12.5px;
  color: #C6CDD8;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.eink_dlr_identity .eink_dlr_meta i {
  color: #9CC1FF;
  margin-right: 5px;
}
.eink_dlr_identity .eink_dlr_meta .eink_dlr_opentoday {
  color: #7CE0A3;
  font-weight: 600;
}

.eink_dlr_band_actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.eink_dlr_band_actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
}
.eink_dlr_band_actions .eink_dlr_call {
  background: #1B6DF3;
  color: #FFFFFF;
}
.eink_dlr_band_actions .eink_dlr_call:hover {
  background: #FFFFFF;
  color: #14181F;
}
.eink_dlr_band_actions .eink_dlr_dirbtn {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.eink_dlr_band_actions .eink_dlr_dirbtn:hover {
  border-color: #FFFFFF;
}

.eink_dlr_navwrap {
  position: sticky;
  top: 0;
  z-index: 950;
  background: #14181F;
  box-shadow: 0 4px 14px rgba(14, 18, 24, 0.18);
}

.eink_dlr_page .site_header.eink_header_sticky {
  position: static;
}

.eink_dlr_nav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.eink_dlr_nav .eink_dlr_nav_item {
  flex-shrink: 0;
  color: #C6CDD8;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 16px 14px;
  border-bottom: 3px solid transparent;
}
.eink_dlr_nav .eink_dlr_nav_item:hover {
  color: #FFFFFF;
}
.eink_dlr_nav .eink_dlr_nav_item.eink_dlr_nav_active {
  color: #FFFFFF;
  border-bottom-color: #1B6DF3;
}

.eink_dlr_section {
  padding: 26px 0 70px;
}

.eink_dlr_inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.eink_dlr_h2 {
  margin: 0 0 4px;
  font-size: 21px;
  font-weight: 800;
}

.eink_dlr_soft {
  margin: 0;
  font-size: 12.5px;
  color: #7A8494;
}

.eink_dlr_cta,
.eink_dlr_cta2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  margin: 6px 8px 0 0;
}

.eink_dlr_cta {
  background: #1B6DF3;
  color: #FFFFFF;
}
.eink_dlr_cta:hover {
  background: #14181F;
  color: #FFFFFF;
}

.eink_dlr_cta2 {
  background: #FFFFFF;
  color: #39414D;
  border: 1px solid #E4E7EC;
}
.eink_dlr_cta2:hover {
  border-color: #1B6DF3;
  color: #1B6DF3;
}

.eink_dlr_toolbar {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
}

.eink_dlr_toolbar_top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.eink_dlr_sortlabel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
}
.eink_dlr_sortlabel select {
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  padding: 8px 10px;
  font-size: 12.5px;
  font-family: inherit;
  background: #FFFFFF;
}
.eink_dlr_sortlabel select:focus {
  outline: none;
  border-color: #1B6DF3;
}

.eink_dlr_toolbar_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.eink_dlr_pills {
  display: flex;
  gap: 6px;
  overflow-x: auto;
}
.eink_dlr_pills button {
  flex-shrink: 0;
  background: #F0F2F5;
  border: 1px solid transparent;
  color: #39414D;
  font-size: 12.5px;
  font-weight: 700;
  font-family: inherit;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
}
.eink_dlr_pills button:hover {
  border-color: #1B6DF3;
}
.eink_dlr_pills button.on {
  background: #14181F;
  color: #FFFFFF;
}

#dlrSearch {
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  padding: 8px 12px;
  font-size: 13px;
  font-family: inherit;
  min-width: 220px;
}
#dlrSearch:focus {
  outline: none;
  border-color: #1B6DF3;
}

.eink_dlr_invgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.eink_dlr_invgrid.eink_dlr_haspromo {
  grid-template-columns: 1fr 280px;
}
@media (max-width: 1000px) {
  .eink_dlr_invgrid.eink_dlr_haspromo {
    grid-template-columns: 1fr;
  }
}

.eink_dlr_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.eink_dlr_promo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eink_dlr_shophead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.eink_dlr_shopactions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eink_dlr_shoplayout .eink_invp_filters {
  top: 58px;
  max-height: calc(100vh - 78px);
  overflow-x: hidden;
}
.eink_dlr_shoplayout .eink_invp_filters .eink_dlr_promocard {
  border: 0;
  border-top: 1px solid #F0F2F5;
  border-radius: 0;
  padding: 16px 0 2px;
  margin: 0;
}
.eink_dlr_shoplayout .eink_invp_filters .eink_dlr_promocard.eink_dlr_promoai {
  background: none;
}

.eink_dlr_promomobile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.eink_dlr_promocard {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 16px 18px;
}
.eink_dlr_promocard h4 {
  margin: 0 0 8px;
  font-size: 13.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 7px;
}
.eink_dlr_promocard h4 i {
  color: #1B6DF3;
}
.eink_dlr_promocard p {
  margin: 0 0 10px;
  font-size: 12.5px;
  color: #5B6472;
  line-height: 1.55;
}
.eink_dlr_promocard .eink_dlr_cta,
.eink_dlr_promocard .eink_dlr_cta2 {
  display: inline-block;
}
.eink_dlr_promocard.eink_dlr_promoai {
  background: linear-gradient(135deg, #F0F6FF, #FFFFFF);
}

.eink_dlr_promoveh {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid #F0F2F5;
  text-decoration: none;
}
.eink_dlr_promoveh:first-child {
  border-top: 0;
  padding-top: 2px;
}
.eink_dlr_promoveh strong {
  font-size: 12.5px;
  color: #14181F;
  font-weight: 700;
}
.eink_dlr_promoveh span {
  font-size: 12.5px;
  font-weight: 700;
  color: #1B6DF3;
  white-space: nowrap;
}
.eink_dlr_promoveh:hover strong {
  color: #1B6DF3;
}

.eink_dlr_emptystate {
  text-align: center;
  background: #FFFFFF;
  border: 1px dashed #E4E7EC;
  border-radius: 16px;
  padding: 52px 24px;
}
.eink_dlr_emptystate h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
}
.eink_dlr_emptystate p {
  margin: 0 auto 16px;
  font-size: 13.5px;
  color: #5B6472;
  max-width: 460px;
  line-height: 1.6;
}

.eink_dlr_empty_actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}

.eink_dlr_pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
  font-size: 13px;
  color: #5B6472;
}
.eink_dlr_pager button {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  color: #39414D;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  padding: 9px 16px;
  border-radius: 9px;
  cursor: pointer;
}
.eink_dlr_pager button:hover:not(:disabled) {
  border-color: #1B6DF3;
  color: #1B6DF3;
}
.eink_dlr_pager button:disabled {
  opacity: 0.45;
  cursor: default;
}

.eink_dlr_dirgrid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .eink_dlr_dirgrid {
    grid-template-columns: 1fr;
  }
  .eink_dlr_dirgrid .eink_dlr_map {
    order: 2;
    min-height: 320px;
  }
}

.eink_dlr_dircard {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 20px;
}
.eink_dlr_dircard h3 {
  margin: 0 0 10px;
  font-size: 15.5px;
  font-weight: 800;
}

.eink_dlr_hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.eink_dlr_hours th {
  text-align: left;
  font-weight: 600;
  color: #39414D;
  padding: 4px 8px 4px 0;
}
.eink_dlr_hours td {
  text-align: right;
  color: #5B6472;
  padding: 4px 0;
}
.eink_dlr_hours .eink_dlr_hours_closed td {
  color: #B42318;
  font-weight: 600;
}

.eink_dlr_dircard_meta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #F0F2F5;
  font-size: 13px;
}
.eink_dlr_dircard_meta p {
  margin: 0 0 8px;
}
.eink_dlr_dircard_meta i {
  color: #1B6DF3;
  margin-right: 7px;
}
.eink_dlr_dircard_meta a {
  color: #14181F;
  text-decoration: none;
  font-weight: 600;
}
.eink_dlr_dircard_meta a:hover {
  color: #1B6DF3;
}

.eink_dlr_map {
  min-height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #E4E7EC;
}
.eink_dlr_map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.eink_dlr_formshell {
  background: #FFFFFF;
  border: 1px dashed #C9D2DE;
  border-radius: 14px;
  padding: 26px 24px;
}
.eink_dlr_formshell h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
}
.eink_dlr_formshell p {
  margin: 0 0 12px;
  font-size: 13.5px;
  color: #5B6472;
  line-height: 1.6;
}
.eink_dlr_formshell .eink_dlr_formshell_ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #F0F6FF;
  display: grid;
  place-items: center;
  color: #1B6DF3;
  font-size: 19px;
  margin-bottom: 12px;
}

.eink_dlr_formshell_wide {
  max-width: 640px;
  margin-top: 16px;
}

.eink_dlr_priv {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: #7A8494;
  margin-top: 14px !important;
}
.eink_dlr_priv i {
  color: #1B6DF3;
  margin-top: 2px;
}

.eink_dlr_form {
  position: relative;
}
.eink_dlr_form .eink_dlr_form_h3 {
  margin: 14px 0 10px;
  font-size: 14px;
  font-weight: 800;
}
.eink_dlr_form label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 12px;
}
.eink_dlr_form label span {
  font-weight: 500;
  color: #7A8494;
}
.eink_dlr_form label input,
.eink_dlr_form label select,
.eink_dlr_form label textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-family: inherit;
  background: #FFFFFF;
}
.eink_dlr_form label input:focus,
.eink_dlr_form label select:focus,
.eink_dlr_form label textarea:focus {
  outline: none;
  border-color: #1B6DF3;
}
.eink_dlr_form label textarea {
  resize: vertical;
}
.eink_dlr_form .eink_dlr_form_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 560px) {
  .eink_dlr_form .eink_dlr_form_row {
    grid-template-columns: 1fr;
  }
}
.eink_dlr_form .eink_dlr_form_row3 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 560px) {
  .eink_dlr_form .eink_dlr_form_row3 {
    grid-template-columns: 1fr;
  }
}
.eink_dlr_form .eink_dlr_form_submit {
  background: #1B6DF3;
  color: #FFFFFF;
  border: 0;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
}
.eink_dlr_form .eink_dlr_form_submit:hover {
  background: #14181F;
}
.eink_dlr_form .eink_dlr_form_submit:disabled {
  opacity: 0.6;
  cursor: default;
}
.eink_dlr_form .eink_dlr_form_note {
  min-height: 16px;
  margin: 10px 0 0;
  font-size: 12.5px;
  font-weight: 600;
  color: #B42318;
}
.eink_dlr_form .eink_dlr_prefillnote i {
  color: #E0245E;
}

.eink_dlr_form_done h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
}
.eink_dlr_form_done p {
  margin: 0 0 14px;
  font-size: 13.5px;
  color: #5B6472;
}
.eink_dlr_form_done .eink_dlr_formshell_ico {
  color: #15803D;
  background: #ECFDF5;
}

.eink_dlr_foot {
  background: #1C222B;
  color: #C6CDD8;
  margin-top: 30px;
}

.eink_dlr_foot_inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 36px 20px 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}
@media (max-width: 900px) {
  .eink_dlr_foot_inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .eink_dlr_foot_inner {
    grid-template-columns: 1fr;
  }
}

.eink_dlr_foot_col h4 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
}
.eink_dlr_foot_col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.eink_dlr_foot_col ul li {
  margin-bottom: 7px;
}
.eink_dlr_foot_col ul a {
  color: #C6CDD8;
  text-decoration: none;
  font-size: 13px;
}
.eink_dlr_foot_col ul a:hover {
  color: #FFFFFF;
}

.eink_dlr_foot_id img {
  max-height: 44px;
  max-width: 190px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 4px 8px;
  margin-bottom: 10px;
  display: block;
}
.eink_dlr_foot_id strong {
  display: block;
  color: #FFFFFF;
  font-size: 15px;
  margin-bottom: 6px;
}
.eink_dlr_foot_id p {
  margin: 0 0 10px;
  font-size: 12.5px;
  line-height: 1.55;
}

.eink_dlr_foot_phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.eink_dlr_foot_phone i {
  color: #1B6DF3;
}
.eink_dlr_foot_phone:hover {
  color: #9CC1FF;
}

.eink_dlr_hours_compact th, .eink_dlr_hours_compact td {
  font-size: 12px;
  padding-top: 3px;
  padding-bottom: 3px;
  color: #C6CDD8;
}
.eink_dlr_hours_compact .eink_dlr_hours_closed td {
  color: #FF9C9C;
}

.eink_dlr_foot_social {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.eink_dlr_foot_social a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #FFFFFF;
  font-size: 14px;
  text-decoration: none;
}
.eink_dlr_foot_social a:hover {
  background: #1B6DF3;
}

.eink_dlr_foot_wo,
.eink_dlr_foot_top {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  color: #C6CDD8;
  font-size: 12.5px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 9px;
}
.eink_dlr_foot_wo:hover,
.eink_dlr_foot_top:hover {
  color: #FFFFFF;
}

.eink_vdw_dlrstrip {
  background: #1C222B;
  color: #C6CDD8;
}

.eink_vdw_dlrstrip_inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
}

.eink_vdw_dlrstrip_label i {
  color: #1B6DF3;
  margin-right: 7px;
}
.eink_vdw_dlrstrip_label strong {
  color: #FFFFFF;
}

.eink_vdw_dlrstrip_links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.eink_vdw_dlrstrip_links a {
  color: #C6CDD8;
  text-decoration: none;
  font-weight: 600;
}
.eink_vdw_dlrstrip_links a:hover {
  color: #FFFFFF;
}
.eink_vdw_dlrstrip_links .eink_vdw_dlrstrip_all {
  color: #9CC1FF;
}
.eink_vdw_dlrstrip_links .eink_vdw_dlrstrip_all:hover {
  color: #FFFFFF;
}

.eink_dealer_grid {
  padding: 48px 0 60px;
}

.eink_dg_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.eink_dg_card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 18px;
  text-decoration: none;
  color: #14181F;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.eink_dg_card:hover {
  border-color: #1B6DF3;
  box-shadow: 0 8px 26px rgba(20, 24, 31, 0.08);
}
.eink_dg_card .eink_dg_logo {
  height: 44px;
  display: flex;
  align-items: center;
}
.eink_dg_card .eink_dg_logo img {
  max-height: 44px;
  max-width: 170px;
}
.eink_dg_card .eink_dg_logo .eink_dg_mono {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #14181F;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 17px;
}
.eink_dg_card strong {
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.3;
}
.eink_dg_card .eink_dg_meta {
  font-size: 12.5px;
  color: #5B6472;
}
.eink_dg_card .eink_dg_meta i {
  color: #1B6DF3;
  margin-right: 5px;
}
.eink_dg_card .eink_dg_count {
  margin-top: auto;
  font-size: 12.5px;
  font-weight: 700;
  color: #1B6DF3;
}

.eink_dg_more {
  text-align: center;
  margin-top: 20px;
}
.eink_dg_more a {
  display: inline-block;
  background: #14181F;
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 10px;
  text-decoration: none;
}
.eink_dg_more a:hover {
  background: #1B6DF3;
}

.eink_dirx .eink_block_inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 34px 18px 60px;
}

.eink_dirx_heading {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #14181F;
}

.eink_dirx_intro {
  margin: 0 0 18px;
  font-size: 14.5px;
  color: #5B6472;
  max-width: 720px;
}

.eink_dirx_provinces {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 22px;
}
.eink_dirx_provinces .eink_dirx_pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  text-decoration: none;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  color: #39414D;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.eink_dirx_provinces .eink_dirx_pill span {
  font-weight: 700;
  font-size: 11.5px;
  color: #7A8494;
  background: #F0F2F5;
  border-radius: 999px;
  padding: 3px 7px;
}
.eink_dirx_provinces .eink_dirx_pill:hover {
  border-color: #9CC1FF;
  color: #1B6DF3;
}
.eink_dirx_provinces .eink_dirx_pill_on {
  background: #1B6DF3;
  border-color: #1B6DF3;
  color: #FFFFFF;
}
.eink_dirx_provinces .eink_dirx_pill_on span {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}
.eink_dirx_provinces .eink_dirx_pill_on:hover {
  color: #FFFFFF;
}

.eink_dirx_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.eink_dirx_subhead {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  color: #14181F;
}

.eink_dirx_views {
  display: flex;
  gap: 6px;
}
.eink_dirx_views .eink_dirx_view {
  padding: 7px 14px;
  border-radius: 9px;
  text-decoration: none;
  border: 1px solid #E4E7EC;
  background: #FFFFFF;
  color: #39414D;
  font-size: 13px;
  font-weight: 700;
}
.eink_dirx_views .eink_dirx_view:hover {
  border-color: #9CC1FF;
  color: #1B6DF3;
}
.eink_dirx_views .eink_dirx_view_on {
  background: #14181F;
  border-color: #14181F;
  color: #FFFFFF;
}
.eink_dirx_views .eink_dirx_view_on:hover {
  color: #FFFFFF;
}

.eink_dirx_alpha {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 16px;
}
.eink_dirx_alpha .eink_dirx_letter {
  min-width: 34px;
  text-align: center;
  padding: 7px 0;
  border-radius: 8px;
  border: 1px solid #E4E7EC;
  background: #FFFFFF;
  color: #39414D;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.eink_dirx_alpha .eink_dirx_letter:hover {
  border-color: #9CC1FF;
  color: #1B6DF3;
}
.eink_dirx_alpha .eink_dirx_letter_on {
  background: #1B6DF3;
  border-color: #1B6DF3;
  color: #FFFFFF;
}
.eink_dirx_alpha .eink_dirx_letter_on:hover {
  color: #FFFFFF;
}
.eink_dirx_alpha .eink_dirx_letter_off {
  color: #C6CCD4;
  background: #F5F6F8;
  cursor: default;
}
.eink_dirx_alpha .eink_dirx_letter_off:hover {
  border-color: #E4E7EC;
  color: #C6CCD4;
}

.eink_dirx_rows {
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  background: #FFFFFF;
  overflow: hidden;
}

.eink_dirx_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  text-decoration: none;
  border-top: 1px solid #F0F2F5;
  scroll-margin-top: 90px;
}
.eink_dirx_row:first-child {
  border-top: 0;
}
.eink_dirx_row:hover {
  background: #F0F6FF;
}
.eink_dirx_row .eink_dirx_row_name {
  font-size: 14.5px;
  font-weight: 700;
  color: #14181F;
}
.eink_dirx_row .eink_dirx_row_name i {
  font-size: 11px;
  color: #98A1AE;
  width: 14px;
}
.eink_dirx_row .eink_dirx_row_count {
  font-size: 12.5px;
  font-weight: 700;
  color: #7A8494;
  white-space: nowrap;
}

.eink_dirx_row_on {
  background: #F0F6FF;
}
.eink_dirx_row_on .eink_dirx_row_name i {
  color: #1B6DF3;
}

.eink_dirx_expand {
  padding: 4px 16px 18px;
  border-top: 1px solid #F0F2F5;
  background: #FAFBFC;
}

.eink_dirx_cityhead {
  margin: 16px 0 4px;
  font-size: 13px;
  font-weight: 800;
  color: #5B6472;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.eink_dirx_dealer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 2px;
  border-bottom: 1px solid #F0F2F5;
  flex-wrap: wrap;
}
.eink_dirx_dealer:last-child {
  border-bottom: 0;
}
.eink_dirx_dealer .eink_dirx_dealer_name {
  font-size: 14px;
  color: #39414D;
  flex: 1 1 auto;
}
.eink_dirx_dealer .eink_dirx_dealer_name a {
  color: #1B6DF3;
  font-weight: 700;
  text-decoration: none;
}
.eink_dirx_dealer .eink_dirx_dealer_name a:hover {
  text-decoration: underline;
}
.eink_dirx_dealer .eink_dirx_dealer_city {
  font-size: 12.5px;
  color: #7A8494;
}
.eink_dirx_dealer .eink_dirx_dealer_phone {
  font-size: 13px;
  color: #39414D;
  text-decoration: none;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.eink_dirx_dealer .eink_dirx_dealer_phone i {
  font-size: 11px;
  color: #98A1AE;
  margin-right: 3px;
}
.eink_dirx_dealer .eink_dirx_dealer_phone:hover {
  color: #1B6DF3;
}

.eink_dirx_livechip {
  display: inline-block;
  margin-left: 7px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ECFDF5;
  color: #15803D;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  vertical-align: 1px;
}

.eink_dirx_rows_name {
  padding: 6px 16px;
}

@media (max-width: 640px) {
  .eink_dirx_heading {
    font-size: 23px;
  }
  .eink_dirx_bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .eink_dirx_dealer {
    flex-direction: column;
    gap: 2px;
  }
  .eink_dirx_dealer .eink_dirx_dealer_phone {
    align-self: flex-start;
  }
}
.eink_dprof {
  background: #F5F6F8;
}
.eink_dprof .eink_dprof_inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 26px 18px 60px;
}

.eink_dprof_crumb {
  font-size: 13px;
  color: #7A8494;
  margin-bottom: 16px;
}
.eink_dprof_crumb a {
  color: #1B6DF3;
  text-decoration: none;
  font-weight: 700;
}
.eink_dprof_crumb a:hover {
  text-decoration: underline;
}
.eink_dprof_crumb span[aria-hidden] {
  margin: 0 5px;
}

.eink_dprof_band {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 18px;
}
.eink_dprof_band h1 {
  margin: 0 0 4px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #14181F;
}
.eink_dprof_band .eink_dprof_type {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #7A8494;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.eink_dprof_band .eink_dprof_contact {
  text-align: right;
}
.eink_dprof_band .eink_dprof_contact p {
  margin: 0 0 6px;
  font-size: 14px;
  color: #39414D;
  line-height: 1.5;
}
.eink_dprof_band .eink_dprof_phone {
  font-size: 17px;
  font-weight: 800;
  color: #1B6DF3;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.eink_dprof_band .eink_dprof_phone:hover {
  text-decoration: underline;
}

.eink_dprof_grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 18px;
  align-items: start;
}

.eink_dprof_card {
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  margin-bottom: 18px;
}
.eink_dprof_card h2 {
  margin: 10px 0 2px;
  font-size: 16.5px;
  font-weight: 800;
  color: #14181F;
}
.eink_dprof_card p {
  margin: 0 0 12px;
  font-size: 13px;
  color: #5B6472;
}

.eink_dprof_ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 24px;
}

.eink_dprof_ico_claim {
  background: #ECFDF5;
  color: #15803D;
}

.eink_dprof_ico_fix {
  background: #FEF3C7;
  color: #B45309;
}

.eink_dprof_go {
  display: inline-block;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background: #15803D;
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 800;
  font-family: inherit;
}
.eink_dprof_go:hover {
  background: #116230;
  color: #FFFFFF;
}

.eink_dprof_go_fix {
  background: #B45309;
}
.eink_dprof_go_fix:hover {
  background: #92400E;
}

.eink_dprof_form {
  margin-top: 14px;
  text-align: left;
}
.eink_dprof_form label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #39414D;
  margin-bottom: 10px;
}
.eink_dprof_form input, .eink_dprof_form textarea {
  display: block;
  width: 100%;
  margin-top: 4px;
  padding: 9px 11px;
  border: 1px solid #E4E7EC;
  border-radius: 9px;
  font-size: 13.5px;
  font-family: inherit;
  color: #14181F;
  background: #FFFFFF;
}
.eink_dprof_form input:focus, .eink_dprof_form textarea:focus {
  outline: 2px solid #9CC1FF;
  border-color: #1B6DF3;
}
.eink_dprof_form .eink_dprof_formmsg {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #15803D;
  text-align: center;
}

.eink_dprof_map {
  position: relative;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
  min-height: 460px;
}
.eink_dprof_map iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}
.eink_dprof_map .eink_dprof_dir {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 9px 14px;
  border-radius: 10px;
  background: #14181F;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(14, 18, 24, 0.28);
}
.eink_dprof_map .eink_dprof_dir:hover {
  background: #1B6DF3;
  color: #FFFFFF;
}

@media (max-width: 860px) {
  .eink_dprof_grid {
    grid-template-columns: 1fr;
  }
  .eink_dprof_map {
    order: -1;
    min-height: 0;
  }
  .eink_dprof_map iframe {
    height: 320px;
  }
  .eink_dprof_band .eink_dprof_contact {
    text-align: left;
  }
}
.eink_dprof_fixsec {
  margin-top: 18px;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 14px;
  padding: 24px;
  scroll-margin-top: 90px;
}
.eink_dprof_fixsec h2 {
  margin: 0 0 16px;
  font-size: 19px;
  font-weight: 800;
  color: #14181F;
}
.eink_dprof_fixsec h2 i {
  color: #B45309;
  margin-right: 6px;
}

.eink_dprof_onfile {
  border: 1px solid #F0F2F5;
  border-radius: 12px;
  background: #FAFBFC;
  padding: 14px 16px 6px;
  margin: 0 0 16px;
}
.eink_dprof_onfile legend {
  font-size: 13px;
  font-weight: 800;
  color: #5B6472;
  padding: 0 8px;
}
.eink_dprof_onfile input[disabled] {
  background: #F0F2F5;
  color: #5B6472;
  cursor: not-allowed;
  border-color: #E4E7EC;
}

.eink_dprof_fixrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}
.eink_dprof_fixrow.eink_dprof_fixrow_3 {
  grid-template-columns: 1fr 1fr 1.4fr;
}
.eink_dprof_fixrow.eink_dprof_fixrow_4 {
  grid-template-columns: repeat(4, 1fr);
}

.eink_dprof_fixcomment {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #39414D;
}
.eink_dprof_fixcomment textarea {
  margin-top: 4px;
}

.eink_dprof_fixintro {
  margin: 10px 0 12px;
  font-size: 12.5px;
  color: #7A8494;
}

.eink_dprof_fixsend {
  width: auto;
  min-width: 180px;
}

@media (max-width: 700px) {
  .eink_dprof_fixrow, .eink_dprof_fixrow.eink_dprof_fixrow_3, .eink_dprof_fixrow.eink_dprof_fixrow_4 {
    grid-template-columns: 1fr;
  }
  .eink_dprof_fixsend {
    width: 100%;
  }
}
.eink_dirx_search {
  display: flex;
  gap: 8px;
  margin: 4px 0 14px;
  max-width: 560px;
}
.eink_dirx_search input[type=search] {
  flex: 1 1 auto;
  padding: 10px 14px;
  border: 1px solid #E4E7EC;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #14181F;
  background: #FFFFFF;
}
.eink_dirx_search input[type=search]:focus {
  outline: 2px solid #9CC1FF;
  border-color: #1B6DF3;
}
.eink_dirx_search button {
  padding: 10px 18px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  background: #1B6DF3;
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 800;
  font-family: inherit;
  white-space: nowrap;
}
.eink_dirx_search button:hover {
  background: #1554C0;
}
.eink_dirx_search button i {
  margin-right: 4px;
}

.eink_dirx_trap {
  display: none !important;
}

/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  --pswp-root-z-index: 100000;
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;
  --pswp-error-text-color: var(--pswp-icon-color);
}

/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/
.pswp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--pswp-root-z-index);
  display: none;
  touch-action: none;
  outline: 0;
  opacity: 0.003;
  contain: layout style size;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
  display: block;
}

.pswp,
.pswp__bg {
  transform: translateZ(0);
  will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
  background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
  overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
  width: auto;
  height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
  cursor: zoom-out;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__item {
  /* z-index for fade transition */
  z-index: 1;
  overflow: hidden;
}

.pswp__hidden {
  display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}

.pswp__content > * {
  pointer-events: auto;
}

/*

  PhotoSwipe UI

*/
/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}

.pswp__error-msg {
  margin: auto;
  font-size: 1em;
  line-height: 1;
  color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
  opacity: 0.005;
  will-change: opacity;
  transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
  z-index: 10; /* always overlap slide content */
  pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
  opacity: 1;
  pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
  position: relative;
  display: block;
  width: 50px;
  height: 60px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 0.85;
  -webkit-appearance: none;
  -webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
  outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
  background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  z-index: 10;
  /* allow events to pass through top bar itself */
  pointer-events: none !important;
}

.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}

/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}

/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}

.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}

/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}