/* Styles for the components rebuilt in React (hero slider, mobile menu). Everything else
   comes from the legacy theme's own stylesheets in legacy.css, which loads before this. */

/* ---------------------------------------------------------------- hero slider */

.krl-hero {
  position: relative;
  width: 100%;
  /* Below the original module's fixed 970px, and tied to the viewport so it never takes the
     whole screen on a laptop: 870px on a 1080-high display, ~730px on a 900-high one. */
  height: clamp(580px, 81vh, 870px);
  overflow: hidden;
  background-color: var(--pbmit-evgrid-blackish-color, #000);
}

/* Slides sit side by side on a rail and move horizontally, rather than crossfading. */
.krl-hero-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.krl-hero-slide {
  position: relative;
  width: 33.3333%;
  height: 100%;
  flex: 0 0 auto;
  overflow: hidden;
}

.krl-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 8s linear;
}
/* Slow drift on the active slide, so a still photo doesn't sit dead on the page. */
.krl-hero-slide.is-active .krl-hero-bg { transform: scale(1); }

.krl-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Content sits in the same column as the rest of the site, clearing the transparent header. */
.krl-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1428px;
  margin: 0 auto;
  /* Top clears the transparent header, bottom clears the controls; the content then centres
     in what's left rather than running underneath either. */
  padding: var(--pbmit-evgrid-header-height, 90px) 30px 96px;
}

.krl-hero-content { max-width: 640px; }

.krl-hero-slide--center .krl-hero-inner { justify-content: center; text-align: center; }
.krl-hero-slide--center .krl-hero-content { max-width: 760px; }
.krl-hero-slide--right .krl-hero-inner { justify-content: flex-end; text-align: right; }

/* Each part rises in turn once its slide becomes the active one. */
.krl-hero-eyebrow,
.krl-hero-heading,
.krl-hero-desc,
.krl-hero-actions {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.krl-hero-slide.is-active .krl-hero-eyebrow,
.krl-hero-slide.is-active .krl-hero-heading,
.krl-hero-slide.is-active .krl-hero-desc,
.krl-hero-slide.is-active .krl-hero-actions {
  opacity: 1;
  transform: none;
}

.krl-hero-slide.is-active .krl-hero-eyebrow { transition-delay: 0.15s; }
.krl-hero-slide.is-active .krl-hero-heading { transition-delay: 0.28s; }
.krl-hero-slide.is-active .krl-hero-desc { transition-delay: 0.42s; }
.krl-hero-slide.is-active .krl-hero-actions { transition-delay: 0.56s; }

.krl-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-family: Inter, sans-serif;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.krl-hero-slide--center .krl-hero-eyebrow { justify-content: center; }
.krl-hero-slide--right .krl-hero-eyebrow { justify-content: flex-end; flex-direction: row-reverse; }

.krl-hero-rule {
  width: 42px;
  height: 2px;
  background: var(--pbmit-evgrid-global-color, #0077b6);
  flex: 0 0 auto;
}

.krl-hero-heading {
  margin: 0 0 18px;
  font-family: Inter, sans-serif;
  font-weight: 750;
  /* Capped so the tallest slide (three lines) still clears the header and the controls. */
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
}

.krl-hero-heading span { display: block; }

.krl-hero-desc {
  margin: 0 0 26px;
  font-family: Raleway, sans-serif;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.krl-hero-slide--center .krl-hero-desc { margin-left: auto; margin-right: auto; }
.krl-hero-slide--right .krl-hero-desc { margin-left: auto; }

.krl-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.krl-hero-slide--center .krl-hero-actions { justify-content: center; }
.krl-hero-slide--right .krl-hero-actions { justify-content: flex-end; }

/* ---- controls ---- */

.krl-hero-ui {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1428px;
  padding: 0 30px;
}

/* Navigation is the progress tabs themselves — one per slide, click to jump. */
.krl-hero-tabs { display: flex; gap: 10px; flex: 1 1 auto; max-width: 300px; }

.krl-hero-tab {
  position: relative;
  flex: 1 1 0;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  overflow: hidden;
}

/* The fill only animates on the active tab; the others stay empty. */
.krl-hero-tab-fill {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: scaleX(0);
  background: #fff;
}
.krl-hero-tab.is-active .krl-hero-tab-fill { animation-name: krl-hero-progress; animation-timing-function: linear; }

@keyframes krl-hero-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.krl-hero-count {
  margin: 0 0 0 auto;
  font-family: Inter, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}
.krl-hero-count strong { color: #fff; font-size: 17px; font-weight: 600; margin-right: 4px; }

@media (max-width: 900px) {
  .krl-hero { height: clamp(420px, 72vh, 560px); }
  .krl-hero-inner { padding-left: 20px; padding-right: 20px; padding-bottom: 80px; }
  .krl-hero-ui { padding: 0 20px; gap: 12px; }
  .krl-hero-tabs { max-width: none; }
}

@media (max-width: 600px) {
  /* The right-aligned composition has nowhere to go at this width. */
  .krl-hero-slide--right .krl-hero-inner { justify-content: flex-start; text-align: left; }
  .krl-hero-slide--right .krl-hero-eyebrow { justify-content: flex-start; flex-direction: row; }
  .krl-hero-slide--right .krl-hero-desc { margin-left: 0; }
  .krl-hero-slide--right .krl-hero-actions { justify-content: flex-start; }
  .krl-hero-desc { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .krl-hero-track,
  .krl-hero-bg,
  .krl-hero-eyebrow,
  .krl-hero-heading,
  .krl-hero-desc,
  .krl-hero-actions {
    transition: none;
  }
  .krl-hero-tab.is-active .krl-hero-tab-fill { animation: none; transform: scaleX(1); }
}

/* ---------------------------------------------------------------- mobile menu */

.pbmit-mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  padding: 90px 30px 30px;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

.pbmit-mobile-menu-panel.is-open {
  transform: translateX(0);
}

.pbmit-mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #000;
}

.pbmit-mobile-menu-close::before {
  content: "\00d7";
  font-size: 30px;
  line-height: 30px;
}

.pbmit-mobile-menu-close i {
  display: none;
}

.pbmit-mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pbmit-mobile-menu-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pbmit-mobile-menu-list a {
  display: block;
  padding: 14px 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}

.pbmit-mobile-menu-list li.current-menu-item > a {
  color: var(--pbmit-evgrid-global-color, #0077b6);
}

.pbmit-mobile-menu-phone {
  display: inline-block;
  margin-top: 24px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  color: var(--pbmit-evgrid-global-color, #0077b6);
  text-decoration: none;
}

body.pbmit-menu-open {
  overflow: hidden;
}

.pbmit-mobile-menu-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s;
  z-index: 999;
}

/* ------------------------------------------- station page live status indicator */

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(2.8); opacity: 0; }
  100% { transform: scale(2.8); opacity: 0; }
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.fc-live-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.fc-live-wrap .fc-ring {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-ring 2s ease-out infinite;
}

.fc-live-wrap .fc-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 2s ease-in-out infinite;
  z-index: 1;
}

/* WordPress galleries float their items; without a clear at the start of each row an
   item shorter than its neighbours snags the row above. */
.gallery-columns-6 .gallery-item:nth-child(6n + 1) { clear: both; }
.gallery-columns-5 .gallery-item:nth-child(5n + 1) { clear: both; }
.gallery-columns-4 .gallery-item:nth-child(4n + 1) { clear: both; }
.gallery-columns-3 .gallery-item:nth-child(3n + 1) { clear: both; }

/* ------------------------------------------------------- station finder layout */

/* Mirrors the original: a 40% panel of filters and results, with the map absolutely
   positioned in the remaining 60% so the results list scrolls past it. */
#storeLocator__topHalf {
  position: relative;
}

#storeLocator__topHalf::after {
  content: '';
  display: table;
  clear: both;
}

#super-left-panel {
  float: left;
  width: 40%;
}

.store-locator-map-holder {
  float: left;
  width: 60%;
  padding: 0 5px;
  position: relative;
}

#storeLocatorMap {
  position: absolute;
  top: 0;
  left: 5px;
  right: 5px;
  height: 1020px;
}

.krl-finder-map {
  width: 100%;
  height: 100%;
}

#storeLocator__storeList .store-locator__infobox.is-active {
  outline: 2px solid var(--pbmit-evgrid-global-color, #0077b6);
}

.filter-popup.is-open {
  display: block;
}

@media (max-width: 1024px) {
  #super-left-panel,
  .store-locator-map-holder {
    float: none;
    width: 100%;
  }
  #storeLocatorMap {
    position: relative;
    left: 0;
    right: 0;
    height: 480px;
  }
}

/* Partner logos: the hover image is served without width/height attributes, so without
   this it sizes to its natural height and stretches the card. The original renders it at
   the same 150x80 as the featured image beneath it. */
.pbmit-client-hover-img img {
  width: 150px;
  height: 80px;
}

/* =========================================================== added home sections */

/* Staggered entrance for each group of cards. The hidden state is applied only once the
   script has armed the group, so the content is visible if the script never runs. */
[data-krl-reveal].krl-reveal-armed > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-krl-reveal].krl-reveal-armed.is-revealed > * {
  opacity: 1;
  transform: none;
}

.krl-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

/* ================================================================ shared ui tokens */

.krl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 119, 182, 0.08);
  border: 1px solid rgba(0, 119, 182, 0.2);
  border-radius: 9999px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pbmit-evgrid-global-color, #0077b6);
  margin-bottom: 16px;
}

.krl-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pbmit-evgrid-global-color, #0077b6);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.25);
  animation: krlPulse 2.2s infinite;
}

@keyframes krlPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 119, 182, 0.4); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 119, 182, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 119, 182, 0); }
}

.krl-gradient-text {
  background: linear-gradient(135deg, #0077b6 0%, #0096c7 50%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.krl-subhead {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pbmit-evgrid-global-color, #0077b6);
  display: block;
  margin-bottom: 6px;
}

/* ================================================================ redesigned what we do */

.krl-wwd-section {
  position: relative;
  background: #ffffff;
  padding: 42px 0 45px;
}

.krl-wwd-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  margin-bottom: 36px;
}

.krl-wwd-title {
  font-family: Inter, sans-serif;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.15;
  font-weight: 850;
  color: #0f172a;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.krl-wwd-lead-text {
  font-family: Inter, sans-serif;
  font-size: 16.5px;
  line-height: 1.75;
  color: #475569;
  margin: 0 0 24px;
}

.krl-wwd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.krl-tag {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.krl-tag:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.krl-wwd-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.krl-wwd-stations-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: var(--pbmit-evgrid-global-color, #0077b6);
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
  text-decoration: none;
}

.krl-wwd-stations-btn:hover {
  border-color: var(--pbmit-evgrid-global-color, #0077b6);
  background: #f0f9ff;
  color: var(--pbmit-evgrid-global-color, #0077b6);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 119, 182, 0.12);
}

/* Showcase Media Frame */
.krl-wwd-media {
  position: relative;
}

.krl-wwd-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 24px 60px -15px rgba(0, 119, 182, 0.2);
}

.krl-wwd-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.krl-wwd-image-frame:hover .krl-wwd-image {
  transform: scale(1.02);
}

.krl-wwd-image-glow {
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

/* Floating Glass Cards */
.krl-wwd-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  z-index: 2;
  transition: transform 0.3s ease;
}

.krl-wwd-float-card:hover {
  transform: translateY(-4px);
}

.krl-wwd-float-card--top {
  top: 24px;
  left: -24px;
}

.krl-wwd-float-card--bottom {
  bottom: 24px;
  right: -20px;
}

.krl-wwd-float-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 119, 182, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.krl-wwd-float-icon--green {
  background: rgba(0, 137, 123, 0.1);
}

.krl-wwd-float-val {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.krl-wwd-float-lbl {
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: #64748b;
}

/* Pillars Section */
.krl-wwd-pillars-header {
  text-align: center;
  margin-bottom: 20px;
}

.krl-pillars-heading {
  font-family: Inter, sans-serif;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 850;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.01em;
}

.krl-wwd-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.krl-pillar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 34px 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  position: relative;
  overflow: hidden;
}

.krl-pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, transparent);
  transition: background 0.35s ease;
}

.krl-pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 119, 182, 0.35);
  box-shadow: 0 22px 48px -12px rgba(0, 119, 182, 0.15);
}

.krl-pillar-card:nth-child(1):hover::before {
  background: linear-gradient(90deg, #0077b6, #00b4d8);
}
.krl-pillar-card:nth-child(2):hover::before {
  background: linear-gradient(90deg, #00897b, #00b4d8);
}
.krl-pillar-card:nth-child(3):hover::before {
  background: linear-gradient(90deg, #1e3a8a, #2563eb);
}

.krl-pillar-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.krl-pillar-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.krl-pillar-card:hover .krl-pillar-card-icon {
  transform: scale(1.08);
}

.krl-pillar-eyebrow {
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.krl-pillar-name {
  font-family: Inter, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
}

.krl-pillar-lead {
  font-family: Inter, sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 20px;
}

.krl-pillar-divider {
  height: 1px;
  background: linear-gradient(90deg, #e2e8f0 0%, transparent 100%);
  margin-bottom: 20px;
}

.krl-pillar-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.krl-pillar-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.krl-point-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 119, 182, 0.08);
  color: var(--pbmit-evgrid-global-color, #0077b6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.krl-point-text {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: #334155;
}

/* ================================================================ redesigned company stats */

.krl-stats-section {
  position: relative;
  background: #ffffff;
  padding: 10px 0 35px;
}

.krl-stats-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 34px 24px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.krl-stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  z-index: 1;
}

.krl-stat-col {
  position: relative;
  padding: 6px 20px;
  display: flex;
  align-items: center;
}

.krl-stat-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.krl-stat-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.krl-stat-col:hover .krl-stat-icon-badge {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 22px -6px rgba(0, 0, 0, 0.12);
}

.krl-stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
  margin-bottom: 8px;
}

.krl-stat-big-number {
  font-family: Inter, sans-serif;
  font-size: clamp(44px, 4vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}

.krl-stat-suffix {
  font-family: Inter, sans-serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 800;
  margin-left: 2px;
}

.krl-stat-heading {
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 5px;
  letter-spacing: -0.01em;
}

.krl-stat-subtext {
  font-family: Inter, sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.krl-stat-separator {
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: #e2e8f0;
}

@media (max-width: 1040px) {
  .krl-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
  .krl-stat-separator {
    display: none;
  }
  .krl-stats-card {
    padding: 28px 20px;
  }
}

@media (max-width: 640px) {
  .krl-stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .krl-stat-col {
    padding: 0;
  }
  .krl-stats-card {
    padding: 24px 16px;
    border-radius: 18px;
  }
}

/* ================================================================ redesigned our journey */

.krl-oj-section {
  position: relative;
  background: #f8fafc;
  padding: 42px 0 20px;
  border-top: 1px solid #e2e8f0;
}

.krl-oj-section .krl-sec-inner {
  padding: 0 !important;
}

.krl-oj-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 26px;
}

.krl-oj-title {
  font-family: Inter, sans-serif;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.15;
  font-weight: 850;
  color: #0f172a;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.krl-oj-lead {
  font-family: Inter, sans-serif;
  font-size: 16.5px;
  line-height: 1.75;
  color: #475569;
  margin: 0;
}

/* Stats Strip */
.krl-oj-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.krl-oj-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.krl-oj-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 119, 182, 0.35);
  box-shadow: 0 16px 36px rgba(0, 119, 182, 0.09);
}

.krl-oj-stat-val {
  font-family: Inter, sans-serif;
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 850;
  color: var(--pbmit-evgrid-global-color, #0077b6);
  line-height: 1.1;
  margin-bottom: 6px;
}

.krl-oj-stat-lbl {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.krl-oj-stat-sub {
  font-family: Inter, sans-serif;
  font-size: 12.5px;
  color: #64748b;
}

/* Timeline Cards */
.krl-oj-timeline-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.krl-oj-timeline-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.krl-oj-timeline-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 26px 20px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
}

.krl-oj-timeline-card:hover {
  transform: translateY(-6px);
  border-color: var(--pbmit-evgrid-global-color, #0077b6);
  box-shadow: 0 18px 40px -10px rgba(0, 119, 182, 0.15);
}

.krl-oj-timeline-card--highlight {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  border: 1.5px solid var(--pbmit-evgrid-global-color, #0077b6);
  box-shadow: 0 8px 26px rgba(0, 119, 182, 0.1);
}

.krl-oj-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 6px;
}

.krl-oj-year-pill {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  background: var(--pbmit-evgrid-global-color, #0077b6);
  padding: 4px 12px;
  border-radius: 9999px;
  display: inline-block;
}

.krl-oj-tag-pill {
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 6px;
}

.krl-oj-milestone-title {
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
}

.krl-oj-milestone-desc {
  font-family: Inter, sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
  flex-grow: 1;
}

/* Recognition & CTA Banner */
.krl-oj-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #003a5c 100%);
  border-radius: 24px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  color: #ffffff;
  box-shadow: 0 24px 60px -15px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.krl-oj-award-img {
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

.krl-oj-banner-heading {
  font-family: Inter, sans-serif;
  font-size: 26px;
  font-weight: 850;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.krl-oj-banner-text {
  font-family: Inter, sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: #cbd5e1;
  margin: 0;
}

.krl-oj-banner-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.krl-oj-banner a.krl-oj-about-btn,
.krl-oj-banner .krl-oj-about-btn,
.krl-oj-banner .krl-btn.krl-oj-about-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  font-family: Inter, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.25s ease;
  text-decoration: none;
}

.krl-oj-banner a.krl-oj-about-btn span,
.krl-oj-banner .krl-oj-about-btn span,
.krl-oj-banner .krl-btn.krl-oj-about-btn span {
  color: #ffffff !important;
}

.krl-oj-banner a.krl-oj-about-btn:hover,
.krl-oj-banner .krl-oj-about-btn:hover,
.krl-oj-banner .krl-btn.krl-oj-about-btn:hover {
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ================================================================ responsive rules for what-we-do & our-journey */

@media (max-width: 1200px) {
  .krl-oj-timeline-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1040px) {
  .krl-wwd-showcase {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 50px;
  }
  .krl-wwd-media {
    max-width: 650px;
    margin: 0 auto;
  }
  .krl-wwd-pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .krl-oj-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .krl-oj-timeline-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .krl-oj-banner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    padding: 36px 28px;
  }
  .krl-oj-banner-media {
    display: flex;
    justify-content: center;
  }
  .krl-oj-banner-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .krl-wwd-section {
    padding: 60px 0 70px;
  }
  .krl-oj-section {
    padding: 65px 0 75px;
  }
  .krl-wwd-float-card--top {
    left: 8px;
    top: 12px;
  }
  .krl-wwd-float-card--bottom {
    right: 8px;
    bottom: 12px;
  }
  .krl-wwd-image {
    height: 320px;
  }
  .krl-oj-stats-grid {
    grid-template-columns: 1fr;
  }
  .krl-oj-timeline-cards {
    grid-template-columns: 1fr;
  }
}

/* ================================================================ redesigned footer */

/* ── CTA banner ─────────────────────────────────────────────────────── */

.krl-ft-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--pbmit-evgrid-global-color, #0077b6) 0%,
    #005f92 50%,
    #004a75 100%
  );
}

/* Decorative mesh overlay */
.krl-ft-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 30%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.krl-ft-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 48px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}

.krl-ft-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  flex-shrink: 0;
}

.krl-ft-cta-body {
  flex: 1 1 320px;
}

.krl-ft-cta-heading {
  color: #fff;
  margin: 0 0 4px;
  font-family: Inter, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.krl-ft-cta-sub {
  color: rgba(255,255,255,0.78);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.krl-ft-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── CTA buttons ───────────────────────────────────────────────────── */

.krl-ft-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}

.krl-ft-btn--primary {
  background: #fff;
  color: var(--pbmit-evgrid-global-color, #0077b6);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.krl-ft-btn--primary:hover {
  background: #f0f7fc;
  color: #005f92;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

.krl-ft-btn--outline {
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.krl-ft-btn--outline:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* Specificity override: the legacy theme forces white on all footer links */
.krl-ft a.krl-ft-btn--primary,
.pbmit-footer-section.pbmit-text-color-white a.krl-ft-btn--primary {
  color: var(--pbmit-evgrid-global-color, #0077b6);
}
.krl-ft a.krl-ft-btn--primary:hover,
.pbmit-footer-section.pbmit-text-color-white a.krl-ft-btn--primary:hover {
  color: #005f92;
}

/* ── Main grid ──────────────────────────────────────────────────────── */

.krl-ft-main {
  background: var(--pbmit-evgrid-blackish-color, #101418);
  padding: 72px 0 56px;
}

.krl-ft-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 44px;
}

/* ── Brand column ──────────────────────────────────────────────────── */

.krl-ft-logo {
  display: block;
  width: 72px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.krl-ft-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
  margin: 0;
  max-width: 30ch;
}

/* ── Link columns ──────────────────────────────────────────────────── */

.krl-ft-col-title {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 20px;
}

.krl-ft-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.krl-ft-col-list li {
  margin-bottom: 12px;
}

.krl-ft-col-list li:last-child {
  margin-bottom: 0;
}

.krl-ft-link {
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s, transform 0.25s;
  display: inline-block;
}

.krl-ft-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pbmit-evgrid-global-color, #0077b6);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.krl-ft-link:hover {
  color: #fff;
  transform: translateX(3px);
}

.krl-ft-link:hover::after {
  width: 100%;
}

/* ── Contact column ────────────────────────────────────────────────── */

.krl-ft-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.krl-ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  transition: transform 0.25s;
}

.krl-ft-contact-item:last-child {
  margin-bottom: 0;
}

.krl-ft-contact-item:hover {
  transform: translateX(3px);
}

.krl-ft-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: var(--pbmit-evgrid-global-color, #0077b6);
  flex-shrink: 0;
  transition: background 0.25s;
}

.krl-ft-contact-item:hover .krl-ft-contact-icon {
  background: rgba(255,255,255,0.12);
}

.krl-ft-contact-label {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 2px;
}

.krl-ft-contact-value {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 0.25s;
  word-break: break-word;
}

a.krl-ft-contact-value:hover {
  color: #fff;
}

/* ── Bottom bar ────────────────────────────────────────────────────── */

.krl-ft-bottom {
  background: var(--pbmit-evgrid-blackish-color, #101418);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.krl-ft-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0;
}

.krl-ft-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  margin: 0;
}

.krl-ft-registered {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ── Responsive ────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .krl-ft-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .krl-ft-brand {
    grid-column: 1 / -1;
  }

  .krl-ft-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .krl-ft-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .krl-ft-cta-heading {
    font-size: 22px;
  }

  .krl-ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .krl-ft-main {
    padding: 52px 0 40px;
  }
}

@media (max-width: 480px) {
  .krl-ft-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .krl-ft-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ======================================================= shared page components */

.krl-sec {
  position: relative;
}

.krl-sec--regular .krl-sec-inner { padding: 48px 0; }
.krl-sec--compact .krl-sec-inner { padding: 32px 0; }
.krl-sec--flush   .krl-sec-inner { padding: 0; }

.krl-sec--light  { background: var(--pbmit-evgrid-light-bg-color, #f6f6f6); }
.krl-sec--white  { background: var(--pbmit-evgrid-white-color, #fff); }
.krl-sec--dark   { background: var(--pbmit-evgrid-blackish-bg-color, #000); color: rgba(255,255,255,.78); }
.krl-sec--brand  { background: var(--pbmit-evgrid-global-color, #0077b6); color: rgba(255,255,255,.85); }

.krl-sec--dark .pbmit-element-title,
.krl-sec--brand .pbmit-element-title { color: #fff; }
.krl-sec--dark .pbmit-heading-desc,
.krl-sec--brand .pbmit-heading-desc { color: rgba(255,255,255,.75); }

.krl-container {
  max-width: 1428px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ---- headings ---- */

.krl-heading { margin-bottom: 24px; }
.krl-heading--left { text-align: left; }
.krl-heading--left .pbmit-heading-desc { margin-left: 0; }
/* The theme's own centring class doesn't reach these, so state it. */
.krl-heading--center,
.krl-heading--center .pbmit-heading-subheading { text-align: center; }
.krl-heading--center .pbmit-heading-desc { max-width: 760px; margin-left: auto; margin-right: auto; }

/* The theme decorates the eyebrow with an absolutely positioned ::before, which it pairs
   with padding on the heading. These headings lay the row out with flex instead, so the
   mark is put back into the flow as a flex item. */
.krl-heading .pbmit-element-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-left: 0;
}

.krl-heading .pbmit-element-subtitle::before {
  position: static;
  flex: 0 0 auto;
  transform: none;
}

.krl-heading--center .pbmit-element-subtitle { justify-content: center; }

.pbmit-element-title,
.krl-heading .pbmit-element-title,
.elementor-widget-pbmit_heading .pbmit-element-title,
.elementor-widget-pbmit_custom_heading .pbmit-element-title,
.pbmit-heading-subheading .pbmit-element-title {
  font-family: Inter, sans-serif !important;
  font-size: clamp(38px, 4.2vw, 60px) !important;
  line-height: 1.15 !important;
  font-weight: 850 !important;
  letter-spacing: -0.02em !important;
  color: #0f172a;
  margin-top: 8px;
  margin-bottom: 14px;
}

.pbmit-element-subtitle,
.krl-heading .pbmit-element-subtitle,
.elementor-widget-pbmit_heading .pbmit-element-subtitle {
  font-family: Inter, sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--pbmit-evgrid-global-color, #0077b6);
}

.krl-heading--light .pbmit-element-title { color: #fff !important; }
.krl-heading--light .pbmit-heading-desc { color: rgba(255,255,255,.75); }

/* Spacing adjustment for Across the network section */
.krl-network-section .krl-sec-inner {
  padding-top: 15px !important;
  padding-bottom: 36px !important;
}

/* Service cards spacing */
.elementor-element.elementor-element-34595d3 {
  padding-top: 0 !important;
  padding-bottom: 24px !important;
  margin: 0 !important;
}

.pbmit-staticbox-wrapper .pbmit-static-box-title {
  font-size: clamp(26px, 2.5vw, 36px) !important;
  font-weight: 850 !important;
}

/* ---- buttons ---- */

.krl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 30px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  transition: background .3s, color .3s, border-color .3s;
}

.krl-btn--solid {
  background: var(--pbmit-evgrid-global-color, #0077b6);
  color: #fff;
}
.krl-btn--solid:hover { background: #005f92; color: #fff; }

.krl-btn--outline {
  border: 1px solid rgba(0,0,0,.18);
  color: var(--pbmit-evgrid-blackish-color, #000);
}
.krl-btn--outline:hover {
  border-color: var(--pbmit-evgrid-global-color, #0077b6);
  color: var(--pbmit-evgrid-global-color, #0077b6);
}

.krl-btn--ghost {
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
}
.krl-btn--ghost:hover { background: rgba(255,255,255,.14); color: #fff; }

.krl-btn--arrow {
  background: var(--pbmit-evgrid-global-color, #0077b6);
  color: #fff;
  padding-right: 10px;
}
.krl-btn--arrow:hover { background: #005f92; color: #fff; }
.krl-btn--arrow .pbmit-button-icon-wrapper {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--pbmit-evgrid-global-color, #0077b6);
  align-items: center;
  justify-content: center;
}

/* ---- page header & title bars (all pages) ---- */

.pbmit-tbar-title,
.pbmit-title-bar-wrapper .pbmit-tbar-title,
.krl-pagehead .pbmit-tbar-title {
  font-family: Inter, sans-serif !important;
  font-size: clamp(42px, 5vw, 68px) !important;
  font-weight: 850 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
}

.krl-pagehead .pbmit-title-bar-content-inner { position: relative; z-index: 2; }
.krl-pagehead--left .pbmit-title-bar-content-inner { text-align: left; }
.krl-pagehead--left .pbmit-tbar-inner { padding-left: 0; padding-right: 0; }

.krl-pagehead-eyebrow {
  font-family: Inter, sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin: 0 0 12px;
}

/* The theme's title bar keeps its heading left-aligned inside a centred container, so the
   lead is aligned to it rather than centred on its own. */
.krl-pagehead-lead {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.9);
  font-size: 18.5px;
  line-height: 1.6;
}

/* The title bar renders left-aligned whatever the align prop says (the theme's own container
   keeps its heading left), so the actions line up with the title rather than centring. */
.krl-pagehead-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
  justify-content: flex-start;
}

/* ---- feature + step cards ---- */

.krl-grid {
  display: grid;
  gap: 24px;
}
.krl-grid--2 { grid-template-columns: repeat(2, 1fr); }
.krl-grid--3 { grid-template-columns: repeat(3, 1fr); }
.krl-grid--4 { grid-template-columns: repeat(4, 1fr); }

.krl-feature {
  background: #fff;
  border-radius: 10px;
  padding: 34px 30px;
  height: 100%;
  transition: transform .35s ease, box-shadow .35s ease;
}
.krl-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.krl-feature--dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

.krl-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,119,182,.1);
  color: var(--pbmit-evgrid-global-color, #0077b6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}
.krl-feature-icon img { width: 30px; height: 30px; object-fit: contain; }
.krl-feature--dark .krl-feature-icon { background: rgba(255,255,255,.12); color: #fff; }

.krl-feature-title {
  font-family: Inter, sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #0f172a;
}
.krl-feature--dark .krl-feature-title { color: #fff; }

.krl-feature-body { font-size: 15.5px; line-height: 1.65; }
.krl-feature--dark .krl-feature-body { color: rgba(255,255,255,.75); }

.krl-step {
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,.1);
}
.krl-step-number {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: .14em;
  color: var(--pbmit-evgrid-global-color, #0077b6);
}
.krl-step-title {
  font-family: Inter, sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 800;
  margin: 10px 0 8px;
  color: #0f172a;
}
.krl-step-body { font-size: 16px; line-height: 1.65; color: #475569; }

@media (max-width: 1024px) {
  .krl-sec--regular .krl-sec-inner { padding: 70px 0; }
  .krl-grid--3, .krl-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .krl-sec--regular .krl-sec-inner { padding: 50px 0; }
  .krl-grid--2, .krl-grid--3, .krl-grid--4 { grid-template-columns: 1fr; }
}

/* ==================================================================== stations */

.krl-stations { padding-bottom: 90px; background: #f8fafc; }

.krl-st-toolbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.05);
}

.krl-st-toolbar-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.krl-st-search {
  position: relative;
  flex: 1 1 320px;
  display: flex;
  align-items: center;
}

.krl-st-search-icon {
  position: absolute;
  left: 18px;
  width: 18px;
  height: 18px;
  color: #64748b;
  pointer-events: none;
}

.krl-st-search input {
  width: 100%;
  height: 50px;
  padding: 0 42px 0 48px;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  font-size: 14.5px;
  font-family: Inter, sans-serif;
  color: #0f172a;
  background: #ffffff;
  transition: all 0.25s ease;
}

.krl-st-search input:focus {
  outline: none;
  border-color: var(--pbmit-evgrid-global-color, #0077b6);
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.12);
}

.krl-st-search-clear {
  position: absolute;
  right: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.krl-st-search-clear:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.krl-st-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.krl-st-locate,
.krl-st-maptoggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  height: 50px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.krl-st-locate:hover,
.krl-st-maptoggle:hover {
  border-color: var(--pbmit-evgrid-global-color, #0077b6);
  color: var(--pbmit-evgrid-global-color, #0077b6);
  background: #f0f9ff;
}

.krl-st-locate:disabled { opacity: 0.6; cursor: default; }

.krl-st-maptoggle.is-on {
  background: var(--pbmit-evgrid-global-color, #0077b6);
  border-color: var(--pbmit-evgrid-global-color, #0077b6);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 119, 182, 0.25);
}

.krl-st-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.krl-st-filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.krl-st-filter-label {
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #64748b;
  min-width: 68px;
}

.krl-st-chips { display: flex; gap: 8px; flex-wrap: wrap; }

.krl-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #334155;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition: all 0.2s ease;
}

.krl-chip:hover {
  border-color: var(--pbmit-evgrid-global-color, #0077b6);
  color: var(--pbmit-evgrid-global-color, #0077b6);
  background: #f0f9ff;
}

.krl-chip.is-active {
  background: var(--pbmit-evgrid-global-color, #0077b6);
  border-color: var(--pbmit-evgrid-global-color, #0077b6);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 119, 182, 0.25);
}

.krl-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
}

.krl-st-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  flex-wrap: wrap;
  font-size: 13.5px;
}

.krl-st-meta-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.krl-st-count-pill {
  background: #f1f5f9;
  color: #334155;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12.5px;
  font-weight: 500;
}

.krl-st-count-pill strong {
  color: #0f172a;
  font-weight: 750;
}

.krl-st-clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: none;
  background: transparent;
  color: var(--pbmit-evgrid-global-color, #0077b6);
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.krl-st-clear-btn:hover {
  text-decoration: underline;
  opacity: 0.85;
}

.krl-st-sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 550;
}

.krl-st-select-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.krl-st-select-wrapper select {
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 6px 30px 6px 12px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  background: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.krl-st-select-wrapper select:focus {
  outline: none;
  border-color: var(--pbmit-evgrid-global-color, #0077b6);
}

.krl-st-select-arrow {
  position: absolute;
  right: 10px;
  pointer-events: none;
  color: #64748b;
}

.krl-st-error { margin: 12px 0 0; color: #c62828; font-size: 14px; }

.krl-st-layout { display: block; }
.krl-st-layout.has-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 1.4fr);
  gap: 28px;
  align-items: start;
}

.krl-st-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.krl-st-layout.has-map .krl-st-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.krl-st-mapcol { position: sticky; top: 180px; }
.krl-st-map, .krl-st-map-loading {
  height: calc(100vh - 200px);
  min-height: 600px;
  max-height: 920px;
  border-radius: 18px;
  overflow: hidden;
  background: #e8ecef;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid #e2e8f0;
}

/* ---- redesigned station card ---- */

.krl-st-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.krl-st-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 119, 182, 0.35);
  box-shadow: 0 18px 36px -10px rgba(0, 119, 182, 0.15);
}

.krl-st-card-media {
  position: relative;
  height: 200px;
  background: #e2e8f0;
  overflow: hidden;
}

.krl-st-card-media img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.krl-st-card:hover .krl-st-card-media img {
  transform: scale(1.05);
}

.krl-st-card-media-empty {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.krl-st-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, transparent 40%, rgba(15, 23, 42, 0.5) 100%);
  pointer-events: none;
}

.krl-st-media-top {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.krl-st-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 9999px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 750;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.krl-st-brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.krl-st-distance {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 9999px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.krl-st-media-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 10px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.krl-st-media-price-type {
  font-family: Inter, sans-serif;
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

.krl-st-media-price-val {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 850;
  color: #0f172a;
}

.krl-st-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.krl-st-status-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}

.krl-st-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 6px;
}

.krl-st-status.is-open {
  background: #ecfdf5;
  color: #059669;
}

.krl-st-status.is-closed {
  background: #fff1f2;
  color: #e11d48;
}

.krl-st-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.krl-st-tag {
  padding: 3px 8px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #475569;
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
}

.krl-st-tag--ev {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 119, 182, 0.1);
  color: var(--pbmit-evgrid-global-color, #0077b6);
}

.krl-st-name {
  font-family: Inter, sans-serif;
  font-size: 18.5px;
  line-height: 1.35;
  font-weight: 800;
  margin: 0 0 6px;
  color: #0f172a;
}

.krl-st-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.krl-st-name a:hover {
  color: var(--pbmit-evgrid-global-color, #0077b6);
}

.krl-st-address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-family: Inter, sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: #64748b;
  margin: 0 0 14px;
}

.krl-st-address svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #94a3b8;
}

.krl-st-amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
  padding: 0;
}

.krl-st-amenities li {
  font-size: 11.5px;
  font-family: Inter, sans-serif;
  font-weight: 550;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 3px 8px;
}

.krl-st-amenities .krl-st-amenity-more {
  color: var(--pbmit-evgrid-global-color, #0077b6);
  background: #f0f9ff;
  border-color: rgba(0, 119, 182, 0.2);
}

.krl-st-card-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: stretch;
  gap: 8px;
}

/* Both buttons share the row equally and never wrap — beside the map the cards are narrow
   enough that "View station" used to break onto two lines. */
.krl-st-card-foot > a {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  white-space: nowrap;
}
.krl-st-card-foot svg { flex: 0 0 auto; }

.krl-st-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px;
  height: 40px;
  border-radius: 9999px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #475569 !important;
  font-family: Inter, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.krl-st-directions-btn:hover {
  border-color: var(--pbmit-evgrid-global-color, #0077b6);
  color: var(--pbmit-evgrid-global-color, #0077b6) !important;
  background: #f0f9ff;
}

.krl-st-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  height: 40px;
  border-radius: 9999px;
  background: var(--pbmit-evgrid-global-color, #0077b6) !important;
  color: #ffffff !important;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 119, 182, 0.2);
}

.krl-st-view-btn:hover {
  background: #005f92 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 119, 182, 0.3);
}

.krl-st-empty { text-align: center; padding: 80px 20px; }
.krl-st-empty h3 { font-family: Inter, sans-serif; font-size: 22px; margin: 0 0 8px; }
.krl-st-empty p { color: #6b7075; margin: 0 0 20px; }

@media (max-width: 1200px) {
  .krl-st-layout.has-map { grid-template-columns: 1fr; }
  .krl-st-layout.has-map .krl-st-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .krl-st-mapcol { position: static; order: -1; }
  .krl-st-map, .krl-st-map-loading { height: 380px; min-height: 0; }
}

@media (max-width: 900px) {
  .krl-st-grid, .krl-st-layout.has-map .krl-st-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .krl-st-toolbar { position: static; }
}

@media (max-width: 1200px) {
  .krl-st-layout.has-map { grid-template-columns: 1fr; }
  .krl-st-layout.has-map .krl-st-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* No right-hand column at this width, so the map sits above the list instead. */
  .krl-st-mapcol { position: static; order: -1; }
  .krl-st-map, .krl-st-map-loading { height: 380px; min-height: 0; }
}

@media (max-width: 900px) {
  .krl-st-grid, .krl-st-layout.has-map .krl-st-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .krl-st-toolbar { position: static; }
}

@media (max-width: 620px) {
  .krl-st-grid, .krl-st-layout.has-map .krl-st-grid { grid-template-columns: 1fr; }
}

/* ============================================================== forms (shared) */

.krl-form { margin-top: 6px; }

.krl-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.krl-field { margin-bottom: 18px; }

.krl-field label {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--pbmit-evgrid-blackish-color, #232323);
  margin-bottom: 8px;
}

/* The theme styles bare inputs for Contact Form 7, so every property is stated here. */
.krl-field input,
.krl-field select,
.krl-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  background: #fff;
  font-family: Raleway, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  transition: border-color .25s, box-shadow .25s;
  -webkit-appearance: none;
  appearance: none;
}

.krl-field select {
  /* Re-add the disclosure arrow the appearance reset removes. */
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 40px;
}

.krl-field textarea { resize: vertical; min-height: 140px; }

.krl-field input:focus,
.krl-field select:focus,
.krl-field textarea:focus {
  outline: none;
  border-color: var(--pbmit-evgrid-global-color, #0077b6);
  box-shadow: 0 0 0 3px rgba(0,119,182,.12);
}

.krl-field.has-error input,
.krl-field.has-error select,
.krl-field.has-error textarea { border-color: #d64545; }

.krl-field-error {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #d64545;
}

.krl-form-error {
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(214,69,69,.08);
  border: 1px solid rgba(214,69,69,.3);
  color: #b23a3a;
  font-size: 14px;
}

.krl-form-foot {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.krl-form-foot .krl-btn { border: 0; cursor: pointer; }
.krl-form-foot .krl-btn[disabled] { opacity: .6; cursor: default; }

.krl-form-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #8a8f94;
  flex: 1 1 220px;
}
.krl-form-note a { color: var(--pbmit-evgrid-global-color, #0077b6); }

.krl-form-success {
  background: #fff;
  border: 1px solid rgba(0,119,182,.2);
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
}
.krl-form-success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(0,119,182,.1);
  color: var(--pbmit-evgrid-global-color, #0077b6);
  font-size: 28px;
  line-height: 60px;
}
.krl-form-success h3 {
  font-family: Inter, sans-serif;
  font-size: 24px;
  margin: 0 0 10px;
}
.krl-form-success p { margin: 0 0 24px; }
.krl-form-success .krl-btn { cursor: pointer; background: none; }

/* ===================================================================== contact */

.krl-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.krl-channel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 32px 28px;
  border: 1px solid #e8ebee;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

/* Accent rule along the top that fills in on hover. */
.krl-channel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: var(--pbmit-evgrid-global-color, #0077b6);
  transition: width .4s cubic-bezier(.22,1,.36,1);
}
.krl-channel:hover::before { width: 100%; }

.krl-channel:hover {
  transform: translateY(-6px);
  border-color: rgba(0,119,182,.3);
  box-shadow: 0 20px 44px rgba(0,0,0,.09);
}

.krl-channel-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.krl-channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--pbmit-evgrid-global-color, #0077b6);
  color: #fff;
  font-size: 22px;
  flex: 0 0 auto;
  transition: transform .35s ease;
}
.krl-channel:hover .krl-channel-icon { transform: scale(1.06); }

.krl-channel-label {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9aa1a8;
}

.krl-channel-title {
  font-family: Inter, sans-serif;
  font-size: 22px;
  line-height: 30px;
  margin: 0 0 10px;
  color: var(--pbmit-evgrid-blackish-color, #232323);
}

.krl-channel-body {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.65;
  color: #666;
}

/* Pinned to the bottom so the three emails line up however long the copy is. */
.krl-channel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #eef1f4;
}

.krl-channel-email {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--pbmit-evgrid-global-color, #0077b6);
  word-break: break-all;
}

.krl-channel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,119,182,.1);
  color: var(--pbmit-evgrid-global-color, #0077b6);
  font-size: 15px;
  flex: 0 0 auto;
  transition: background .3s, color .3s, transform .3s;
}
.krl-channel:hover .krl-channel-arrow {
  background: var(--pbmit-evgrid-global-color, #0077b6);
  color: #fff;
  transform: translateX(3px);
}

.krl-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.krl-contact-form-col .krl-heading { margin-bottom: 32px; }

.krl-contact-aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 110px;
}

.krl-contact-card {
  background: #fff;
  border: 1px solid #e8ebee;
  border-radius: 12px;
  padding: 28px 28px 26px;
}
.krl-contact-card p { margin: 0; font-size: 15px; line-height: 1.65; color: #666; }
.krl-contact-card address { font-style: normal; font-size: 16px; line-height: 1.7; color: #333; }

.krl-contact-card-label {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #98a0a7;
  margin-bottom: 12px;
}

.krl-contact-card--brand {
  background: var(--pbmit-evgrid-blackish-bg-color, #232323);
  border-color: transparent;
}
.krl-contact-card--brand .krl-contact-card-label { color: rgba(255,255,255,.6); }
.krl-contact-card--brand p { color: rgba(255,255,255,.65); }

.krl-contact-card--quiet { background: transparent; border-style: dashed; }

.krl-contact-phone {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 26px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 10px;
  text-decoration: none;
}
.krl-contact-phone:hover { color: var(--pbmit-evgrid-global-color, #0077b6); }

.krl-contact-link {
  display: inline-block;
  margin-top: 14px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--pbmit-evgrid-global-color, #0077b6);
}
.krl-contact-link::after { content: " →"; }

.krl-contact-meta {
  margin-top: 12px !important;
  font-size: 13px !important;
  color: #98a0a7 !important;
}

.krl-contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.krl-contact-cta-text { flex: 1 1 460px; }
.krl-contact-cta-text h2 {
  font-family: Inter, sans-serif;
  font-size: 32px;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 12px;
}
.krl-contact-cta-text p { margin: 0; color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.65; }

.krl-contact-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.krl-contact-cta-actions .krl-btn--ghost { border-color: rgba(255,255,255,.4); }

@media (max-width: 1100px) {
  .krl-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .krl-contact-aside { position: static; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .krl-channels { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .krl-form-row { grid-template-columns: 1fr; gap: 0; }
  .krl-contact-aside { grid-template-columns: 1fr; }
  .krl-contact-cta-text h2 { font-size: 26px; }
}

/* ======================================== redesigned-page layout + theme overrides */

/* #content is a Bootstrap container on reproduced pages. Redesigned pages opt out via
   SiteShell's fullWidth so their sections can span the viewport; the width comes back
   per-section from .krl-container. */
.krl-content-wide { width: 100%; max-width: none; padding: 0; }

/* Page header: the inline style only supplies the image, so state how it should sit, and
   darken it enough for white text to hold up over any photo. */
.krl-pagehead {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.krl-pagehead::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(16, 20, 24, 0.94) 0%,
    rgba(16, 20, 24, 0.78) 48%,
    rgba(16, 20, 24, 0.42) 100%
  );
  opacity: 1;
}
.krl-pagehead::after { display: none; }

/* Legacy footer button overrides moved into the redesigned footer section above */


/* ============================================================ partners and brands */

.krl-partners-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.krl-partners-intro .krl-heading { margin-bottom: 26px; }
.krl-partners-intro-text p { font-size: 16px; line-height: 1.75; margin: 0 0 20px; }
.krl-partners-intro-text p:last-child { margin-bottom: 0; }

.krl-partners-stats { display: grid; gap: 16px; }

.krl-stat {
  padding: 26px 30px;
  border-left: 3px solid var(--pbmit-evgrid-global-color, #0077b6);
  background: var(--pbmit-evgrid-light-bg-color, #f6f6f6);
  border-radius: 0 10px 10px 0;
}

.krl-stat-value {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 600;
  color: var(--pbmit-evgrid-blackish-color, #232323);
}

.krl-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: #7b8188;
}

.krl-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.krl-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 150px;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid #e8ebee;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.krl-sec--white .krl-brand { background: var(--pbmit-evgrid-light-bg-color, #f6f6f6); border-color: #eceff2; }

.krl-brand:hover {
  transform: translateY(-5px);
  border-color: rgba(0,119,182,.35);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
}

/* Logos vary from wide wordmarks to square roundels, so the tile fixes the box and the
   image is contained inside it. The theme's `img { height: auto }` has to be overridden.
   Logos keep their own colour at rest; hovering pops the mark forward with a spring, lifts
   the tile, and sweeps a brand-blue rule along its foot. */
.krl-brand img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 62px;
  width: auto;
  height: auto !important;
  object-fit: contain;
  transform: translateZ(0);
  transition: transform .55s cubic-bezier(.34, 1.56, .64, 1);
}
.krl-brand:hover img { transform: translateY(-4px) scale(1.16); }

.krl-brand { position: relative; overflow: hidden; }

/* Soft blue glow that blooms behind the logo. */
.krl-brand::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 38%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,119,182,.16) 0%, rgba(0,119,182,0) 70%);
  transform: translate(-50%, -50%) scale(.4);
  opacity: 0;
  transition: transform .5s cubic-bezier(.22,1,.36,1), opacity .4s ease;
  pointer-events: none;
}
.krl-brand:hover::before { transform: translate(-50%, -50%) scale(1); opacity: 1; }

/* Brand-blue rule sweeping in along the foot. */
.krl-brand::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--pbmit-evgrid-global-color, #0077b6);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.krl-brand:hover::after { transform: scaleX(1); }
.krl-brand:hover {
  transform: translateY(-6px);
  border-color: rgba(0,119,182,.45);
  box-shadow: 0 22px 46px rgba(0,119,182,.14);
}

.krl-brand-name {
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: .04em;
  text-align: center;
  color: #8a9098;
  transition: color .3s, transform .3s;
}
.krl-brand:hover .krl-brand-name {
  color: var(--pbmit-evgrid-global-color, #0077b6);
  transform: translateY(2px);
}

@media (prefers-reduced-motion: reduce) {
  .krl-brand, .krl-brand img, .krl-brand::before, .krl-brand::after, .krl-brand-name { transition: none; }
  .krl-brand:hover img { transform: none; }
}

@media (max-width: 1200px) {
  .krl-brand-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 1000px) {
  .krl-partners-intro { grid-template-columns: 1fr; gap: 40px; }
  .krl-partners-stats { grid-template-columns: repeat(3, 1fr); }
  .krl-brand-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 700px) {
  .krl-partners-stats { grid-template-columns: 1fr; }
  .krl-brand-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .krl-brand { height: 120px; padding: 16px 12px; }
  .krl-brand img { max-height: 46px; }
}

@media (max-width: 440px) {
  .krl-brand-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================= EV initiatives */

.krl-ev-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: center;
}

.krl-ev-intro-media img {
  width: 100%;
  height: 420px !important;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.krl-ev-intro-text p { font-size: 16px; line-height: 1.75; margin: 0 0 20px; }
.krl-ev-intro-actions { margin-top: 12px; }

.krl-ev-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.krl-ev-split-text p { color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.75; margin: 0 0 20px; }
.krl-ev-split-text p:last-child { margin-bottom: 0; }

.krl-ev-figures { display: grid; gap: 18px; }

.krl-ev-figure {
  padding: 32px 34px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

.krl-ev-figure--lead {
  background: var(--pbmit-evgrid-global-color, #0077b6);
  border-color: transparent;
}

.krl-ev-figure-value {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 56px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}
.krl-ev-figure-value em { font-style: normal; font-size: 30px; margin-left: 4px; }

.krl-ev-figure-label {
  display: block;
  margin-top: 12px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.krl-ev-figure p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
}

@media (max-width: 1000px) {
  .krl-ev-intro, .krl-ev-split { grid-template-columns: 1fr; gap: 40px; }
  .krl-ev-intro-media { order: 2; }
  .krl-ev-intro-media img { height: 320px !important; }
  .krl-ev-figures { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .krl-ev-figures { grid-template-columns: 1fr; }
  .krl-ev-figure-value { font-size: 44px; }
}

/* A solid button on the brand-blue band would be blue on blue; invert it there. */
.krl-sec--brand .krl-btn--solid {
  background: #fff;
  color: var(--pbmit-evgrid-global-color, #0077b6);
}
.krl-sec--brand .krl-btn--solid:hover { background: rgba(255,255,255,.86); color: #005f92; }

/* ============================================================== join karan retail */

.krl-join-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 60px;
  align-items: start;
}

.krl-join-offer-head { position: sticky; top: 110px; }
.krl-join-offer-head .pbmit-element-title {
  font-size: clamp(38px, 4.4vw, 56px) !important;
  line-height: 1.14 !important;
  font-weight: 850 !important;
  color: #0f172a !important;
  letter-spacing: -0.02em !important;
}
.krl-join-offer-head .pbmit-element-subtitle {
  font-size: 15px !important;
  font-weight: 850 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--pbmit-evgrid-global-color, #0077b6) !important;
}
.krl-join-offer-head p { font-size: 16.5px; line-height: 1.75; margin: 0 0 24px; color: #475569; }
.krl-join-offer-head .krl-heading { margin-bottom: 22px; }

.krl-join-offer-list .krl-step:first-child { border-top: 0; padding-top: 0; }

.krl-join-why {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.krl-join-why-media img {
  width: 100%;
  height: 440px !important;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.krl-join-reasons { list-style: none; margin: 0 0 26px; padding: 0; }

.krl-join-reasons li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.6;
}
.krl-join-reasons li:last-child { border-bottom: 0; }

.krl-join-reasons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pbmit-evgrid-global-color, #0077b6);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.9);
}

.krl-join-why-note { margin: 0; color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.7; }

.krl-join-apply-intro { max-width: 760px; margin: 0 auto; }

.krl-join-apply-form {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e8ebee;
  border-radius: 14px;
  padding: 44px 46px 38px;
}

.krl-join-apply-note { margin-top: 20px; text-align: center; }

/* ---- CV dropzone ---- */

.krl-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 132px;
  padding: 24px;
  border: 2px dashed #d7dde3;
  border-radius: 10px;
  background: #fbfcfd;
  cursor: pointer;
  text-align: center;
  transition: border-color .25s, background .25s;
}
.krl-dropzone:hover,
.krl-dropzone.is-dragging {
  border-color: var(--pbmit-evgrid-global-color, #0077b6);
  background: rgba(0,119,182,.04);
}
.krl-dropzone.has-file { border-style: solid; border-color: rgba(0,119,182,.4); }

.krl-dropzone strong {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--pbmit-evgrid-blackish-color, #232323);
  word-break: break-word;
}
.krl-dropzone span { font-size: 13px; color: #8a9098; }

/* ---- consent checkboxes ---- */

.krl-consents { display: grid; gap: 12px; margin: 24px 0 26px; }

.krl-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  cursor: pointer;
}

.krl-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--pbmit-evgrid-global-color, #0077b6);
  cursor: pointer;
}

.krl-consent a { color: var(--pbmit-evgrid-global-color, #0077b6); text-decoration: underline; }
.krl-consent.has-error { color: #b23a3a; }
.krl-consent .krl-field-error { grid-column: 2; }

@media (max-width: 1000px) {
  .krl-join-offer, .krl-join-why { grid-template-columns: 1fr; gap: 40px; }
  .krl-join-offer-head { position: static; }
  .krl-join-why-media { order: 2; }
  .krl-join-why-media img { height: 300px !important; }
}

@media (max-width: 640px) {
  .krl-join-apply-form { padding: 28px 20px 24px; }
}

/* ------------------------------------------------------------- sticky positioning */

/* The theme sets `overflow: hidden` on #page and `overflow-x: hidden` on body, both to stop
   off-canvas elements widening the page. Either one makes an ancestor scroll container, and
   since the document actually scrolls on <html>, every `position: sticky` inside them
   silently stops working — the stations map, the contact sidebar and the Join page column
   all just scrolled away. `clip` hides the same overflow without creating a scroll
   container, so stickiness works and nothing else changes. */
body,
#page.site {
  overflow-x: clip;
  overflow-y: visible;
}

/* ================================================================ station detail */

.krl-sd-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-bottom: 1px solid #e8ebee;
}
.krl-sd-strip-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.krl-sd-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 14px;
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-size: 14px;
}
.krl-sd-status strong { font-weight: 600; }
.krl-sd-status-note { color: inherit; opacity: .8; }
.krl-sd-status.is-open { background: rgba(16,185,129,.12); color: #047857; }
.krl-sd-status.is-closed { background: rgba(214,69,69,.1); color: #b23a3a; }

.krl-sd-status-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}
.krl-sd-status.is-open .krl-sd-status-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: .5;
  animation: krl-sd-pulse 1.8s ease-out infinite;
}
@keyframes krl-sd-pulse {
  from { transform: scale(.6); opacity: .7; }
  to   { transform: scale(1.5); opacity: 0; }
}

.krl-sd-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid #e2e6ea;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4b5259;
}

.krl-sd-brands { display: flex; gap: 10px; align-items: center; }
.krl-sd-brands img {
  height: 46px !important;
  width: auto;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #e8ebee;
  border-radius: 10px;
  object-fit: contain;
}

.krl-sd-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 56px;
  align-items: start;
}

.krl-sd-section + .krl-sd-section { margin-top: 56px; }

.krl-sd-h3 {
  font-family: Inter, sans-serif;
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 18px;
  color: var(--pbmit-evgrid-blackish-color, #232323);
}

.krl-sd-muted { margin: -8px 0 18px; font-size: 14px; color: #8a9098; }

.krl-sd-prose { font-size: 16px; line-height: 1.8; color: #555; }
.krl-sd-prose p { margin: 0 0 16px; }
.krl-sd-prose p:last-child { margin-bottom: 0; }
.krl-sd-prose strong { color: var(--pbmit-evgrid-blackish-color, #232323); font-weight: 600; }

.krl-sd-amenities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.krl-sd-amenity {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--pbmit-evgrid-light-bg-color, #f6f6f6);
  border: 1px solid #eceff2;
  border-radius: 12px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--pbmit-evgrid-blackish-color, #232323);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.krl-sd-amenity:hover {
  transform: translateY(-3px);
  border-color: rgba(0,119,182,.3);
  box-shadow: 0 12px 28px rgba(0,0,0,.07);
}
.krl-sd-amenity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  flex: 0 0 auto;
  color: var(--pbmit-evgrid-global-color, #0077b6);
  font-size: 22px;
}
.krl-sd-amenity-icon img { width: 26px; height: 26px !important; object-fit: contain; }

.krl-sd-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.krl-sd-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  padding: 14px;
  background: var(--pbmit-evgrid-light-bg-color, #f6f6f6);
  border: 1px solid #eceff2;
  border-radius: 12px;
}
.krl-sd-logo img { max-width: 100%; max-height: 46px; width: auto; height: auto !important; object-fit: contain; }

/* ---- sticky aside ---- */

.krl-sd-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.krl-sd-card {
  background: #fff;
  border: 1px solid #e8ebee;
  border-radius: 14px;
  padding: 24px;
}
.krl-sd-card-title {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--pbmit-evgrid-blackish-color, #232323);
}
.krl-sd-card-note { margin: 14px 0 0; font-size: 12px; color: #98a0a7; }
.krl-sd-card-btn { width: 100%; justify-content: center; margin-top: 16px; }

.krl-sd-prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 10px;
}
.krl-sd-price {
  display: flex;
  flex-direction: column;
  border: 1px solid #e8ebee;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}
.krl-sd-price-grade {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 7px 6px;
}
.krl-sd-price-value {
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 600;
  padding: 10px 6px 12px;
  color: var(--pbmit-evgrid-blackish-color, #232323);
}
.krl-sd-price-value em { font-style: normal; font-size: 13px; margin-left: 1px; color: #8a9098; }

.krl-sd-hours { list-style: none; margin: 0; padding: 0; }
.krl-sd-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid #eef1f4;
  font-size: 14px;
  color: #555;
}
.krl-sd-hours li:first-child { border-top: 0; padding-top: 0; }
.krl-sd-hours li.is-today { color: var(--pbmit-evgrid-global-color, #0077b6); font-weight: 600; }

.krl-sd-hours-uniform {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  font-size: 15px;
  color: #555;
}
.krl-sd-hours-uniform strong { color: var(--pbmit-evgrid-blackish-color, #232323); font-weight: 600; }

.krl-sd-map {
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  background: #e8ecef;
  margin-bottom: 16px;
}

.krl-sd-address { font-style: normal; font-size: 15px; line-height: 1.6; color: #444; margin: 0 0 12px; }

.krl-sd-contact { display: grid; gap: 8px; }
.krl-sd-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--pbmit-evgrid-blackish-color, #232323);
}
.krl-sd-contact-row .krl-icon { color: var(--pbmit-evgrid-global-color, #0077b6); font-size: 16px; }
.krl-sd-contact-row:hover { color: var(--pbmit-evgrid-global-color, #0077b6); }

@media (max-width: 1100px) {
  .krl-sd-grid { grid-template-columns: 1fr; gap: 40px; }
  .krl-sd-aside { position: static; grid-template-columns: repeat(2, 1fr); }
  .krl-sd-aside .krl-sd-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .krl-sd-aside { grid-template-columns: 1fr; }
  .krl-sd-amenities { grid-template-columns: repeat(2, 1fr); }
  .krl-sd-logos { grid-template-columns: repeat(3, 1fr); }
  .krl-sd-h3 { font-size: 21px; line-height: 28px; }
}

@media (max-width: 440px) {
  .krl-sd-amenities { grid-template-columns: 1fr; }
  .krl-sd-logos { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .krl-sd-status.is-open .krl-sd-status-dot::after { animation: none; }
  .krl-sd-amenity { transition: none; }
}

/* ==================================================================== resources */

/* ---- key points strip ---- */

.krl-res-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.krl-res-point {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 26px 24px;
  border: 1px solid #e8ebee;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

/* Accent rule along the top that fills in on hover, as on the contact cards. */
.krl-res-point::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: var(--pbmit-evgrid-global-color, #0077b6);
  transition: width .4s cubic-bezier(.22,1,.36,1);
}
.krl-res-point:hover::before { width: 100%; }
.krl-res-point:hover {
  transform: translateY(-4px);
  border-color: rgba(0,119,182,.3);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.krl-res-point-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,119,182,.1);
  color: var(--pbmit-evgrid-global-color, #0077b6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.krl-res-point-title {
  font-family: Inter, sans-serif;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
  color: #0f172a;
  margin: 2px 0 6px;
}
.krl-res-point p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #64748b; }

/* ---- document + contents list ---- */

.krl-res-layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.krl-res-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.krl-res-card {
  background: #fff;
  border: 1px solid #e8ebee;
  border-radius: 12px;
  padding: 24px 26px;
}

.krl-res-card-label {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #98a0a7;
  margin-bottom: 14px;
}

.krl-res-card--brand {
  background: var(--pbmit-evgrid-global-color, #0077b6);
  border-color: transparent;
}
.krl-res-card--brand .krl-res-card-label { color: rgba(255,255,255,.7); }
.krl-res-card--brand p { margin: 0; font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.88); }
.krl-res-card--brand a { color: #fff; font-weight: 600; text-decoration: none; overflow-wrap: anywhere; }
.krl-res-card--brand a:hover { text-decoration: underline; color: #fff; }

.krl-res-toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.krl-res-toc a {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 9px 12px;
  margin: 0 -12px;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 14.5px;
  line-height: 1.4;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: background .25s, color .25s;
}
.krl-res-toc a:hover { color: #0f172a; background: #f3f5f7; }
.krl-res-toc a.is-active { color: var(--pbmit-evgrid-global-color, #0077b6); background: rgba(0,119,182,.08); }

.krl-res-toc-num {
  flex: 0 0 auto;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #98a0a7;
}
.krl-res-toc a.is-active .krl-res-toc-num { color: var(--pbmit-evgrid-global-color, #0077b6); }

.krl-res-meta { margin: 0; display: grid; gap: 14px; }
.krl-res-meta div { display: grid; gap: 3px; }
.krl-res-meta dt { font-size: 12.5px; color: #98a0a7; }
.krl-res-meta dd { margin: 0; font-family: Inter, sans-serif; font-size: 15px; line-height: 1.45; font-weight: 600; color: #0f172a; }

.krl-res-doc {
  background: #fff;
  border: 1px solid #e8ebee;
  border-radius: 16px;
  padding: 56px 64px 48px;
}

.krl-res-doc-head {
  padding-bottom: 32px;
  margin-bottom: 4px;
  border-bottom: 1px solid #eceff2;
}
.krl-res-doc-head .krl-subhead { margin-bottom: 10px; }

.krl-res-doc-title {
  font-family: Inter, sans-serif;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 12px;
}
.krl-res-doc-meta { margin: 0; font-size: 14.5px; color: #64748b; }
.krl-res-doc-meta time { color: #0f172a; font-weight: 600; }

.krl-res-section {
  position: relative;
  padding: 36px 0 14px 64px;
  /* Anchor targets sit below the sticky header rather than under it. */
  scroll-margin-top: 130px;
}
.krl-res-section + .krl-res-section { border-top: 1px solid #eceff2; }

.krl-res-section-num {
  position: absolute;
  left: 0;
  top: 41px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .14em;
  color: var(--pbmit-evgrid-global-color, #0077b6);
}

.krl-res-section h3 {
  font-family: Inter, sans-serif;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px;
}
.krl-res-section p { font-size: 16.5px; line-height: 1.8; color: #475569; margin: 0 0 18px; }
.krl-res-section p:last-child { margin-bottom: 0; }

.krl-res-address {
  margin: 28px 0 0 64px;
  padding: 26px 30px;
  border-radius: 12px;
  background: #f6f8fa;
  border: 1px solid #e8ebee;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.krl-res-address address { font-style: normal; font-size: 15.5px; line-height: 1.7; color: #334155; margin: 0; }
.krl-res-address strong { display: block; font-family: Inter, sans-serif; font-weight: 800; color: #0f172a; margin-bottom: 2px; }
.krl-res-address .krl-res-card-label { margin-bottom: 6px; }
.krl-res-address a { font-family: Inter, sans-serif; font-size: 15.5px; font-weight: 600; color: var(--pbmit-evgrid-global-color, #0077b6); overflow-wrap: anywhere; }

/* ---- "more from resources" cards ---- */

.krl-res-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.krl-res-nav-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 26px 24px;
  border: 1px solid #e8ebee;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.krl-res-nav-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: var(--pbmit-evgrid-global-color, #0077b6);
  transition: width .4s cubic-bezier(.22,1,.36,1);
}
.krl-res-nav-card:hover::before { width: 100%; }
.krl-res-nav-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,119,182,.3);
  box-shadow: 0 20px 44px rgba(0,0,0,.09);
}

.krl-res-nav-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0,119,182,.1);
  color: var(--pbmit-evgrid-global-color, #0077b6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 4px;
}

.krl-res-nav-title {
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}
.krl-res-nav-card p { margin: 0; flex: 1; font-size: 14.5px; line-height: 1.6; color: #64748b; }

.krl-res-nav-more {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--pbmit-evgrid-global-color, #0077b6);
  margin-top: 4px;
}
.krl-res-nav-more::after { content: " \2192"; }

/* ---- click-to-play video ---- */

.krl-video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  color: #fff;
  font: inherit;
  text-align: left;
  /* The theme styles every <button>; undo the parts that would reach the caption. */
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.4;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.krl-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.krl-video:hover img { transform: scale(1.03); }
.krl-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.6) 100%);
}
.krl-video.is-playing::after { display: none; }

.krl-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  color: var(--pbmit-evgrid-global-color, #0077b6);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .3s ease, background .3s ease;
}
.krl-video:hover .krl-video-play { transform: translate(-50%, -50%) scale(1.06); }
.krl-video:focus-visible { outline: 3px solid var(--pbmit-evgrid-global-color, #0077b6); outline-offset: 3px; }
.krl-video-play svg { width: 30px; height: 30px; margin-left: 4px; }

.krl-video-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 2;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.krl-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- helping disabled drivers ---- */

.krl-hdd-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.krl-hdd-intro-text p { font-size: 16.5px; line-height: 1.75; color: #475569; margin: 0 0 18px; }
.krl-hdd-intro-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }

.krl-hdd-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 32px;
}
.krl-hdd-steps .krl-step { border-top: 2px solid rgba(0,119,182,.3); }

/* ---- responsive ---- */

@media (max-width: 1100px) {
  .krl-res-layout { grid-template-columns: 1fr; }
  .krl-res-aside { position: static; grid-template-columns: repeat(2, 1fr); }
  .krl-res-toc { grid-column: 1 / -1; }
  .krl-res-points, .krl-res-nav, .krl-hdd-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
  .krl-hdd-intro { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .krl-res-doc { padding: 32px 22px 28px; border-radius: 12px; }
  .krl-res-section { padding: 28px 0 12px; }
  .krl-res-section-num { position: static; display: block; margin-bottom: 8px; }
  .krl-res-address { margin-left: 0; gap: 24px; }
  .krl-res-aside { grid-template-columns: 1fr; }
  .krl-res-points, .krl-res-nav, .krl-hdd-steps { grid-template-columns: 1fr; }
  .krl-video-play { width: 64px; height: 64px; }
  .krl-video-play svg { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .krl-res-point, .krl-res-nav-card, .krl-video img, .krl-video-play { transition: none; }
}

/* ========================================================================== nda */

.krl-nda-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.krl-nda-summary-card {
  position: relative;
  padding: 26px 26px 24px;
  border: 1px solid #e8ebee;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.krl-nda-summary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: var(--pbmit-evgrid-global-color, #0077b6);
  transition: width .4s cubic-bezier(.22,1,.36,1);
}
.krl-nda-summary-card:hover::before { width: 100%; }
.krl-nda-summary-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,119,182,.3);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.krl-nda-summary-card h2 {
  margin: 0 0 8px;
  font-family: Inter, sans-serif;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
  color: #0f172a;
}
.krl-nda-summary-card p { margin: 0; font-size: 14px; line-height: 1.65; color: #64748b; }

/* ---- two-column layout: agreement text beside the form ---- */

.krl-nda-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
  gap: 40px;
  align-items: start;
}

.krl-nda-doc {
  background: #fff;
  border: 1px solid #e8ebee;
  border-radius: 16px;
  padding: 40px 44px 34px;
  /* Long agreement, short form: the text scrolls on its own so the form stays reachable. */
  max-height: 78vh;
  overflow-y: auto;
  position: sticky;
  top: 110px;
}

.krl-nda-doc-head {
  padding-bottom: 22px;
  margin-bottom: 4px;
  border-bottom: 1px solid #eceff2;
}
.krl-nda-doc-head .krl-subhead { margin-bottom: 10px; }
.krl-nda-doc-head h2 {
  margin: 0 0 6px;
  font-family: Inter, sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.krl-nda-doc-meta { margin: 0; font-size: 14px; color: #64748b; }

.krl-nda-doc-section { padding: 22px 0 4px; }
.krl-nda-doc-section + .krl-nda-doc-section { border-top: 1px solid #f1f4f7; }
.krl-nda-doc-section h3 {
  margin: 0 0 12px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  color: #0f172a;
}
.krl-nda-doc-section p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.75;
  color: #475569;
}
.krl-nda-doc-section p:last-child { margin-bottom: 0; }

.krl-nda-clause-no {
  display: inline-block;
  min-width: 34px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--pbmit-evgrid-global-color, #0077b6);
}

.krl-nda-doc-foot {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid #eceff2;
  font-size: 13px;
  line-height: 1.7;
  color: #98a0a7;
}

/* ---- form ---- */

.krl-nda-formcol { position: relative; }

.krl-nda-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: #fff;
  border: 1px solid #e8ebee;
  border-radius: 16px;
  padding: 30px 30px 28px;
}

.krl-nda-form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.krl-nda-form legend {
  padding: 0 0 14px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pbmit-evgrid-global-color, #0077b6);
}

.krl-nda-fixed {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  padding: 16px 18px;
  border-radius: 10px;
  background: #f6f8fa;
  border: 1px solid #eceff2;
  font-size: 13.5px;
  line-height: 1.6;
  color: #64748b;
}
.krl-nda-fixed strong { font-family: Inter, sans-serif; font-size: 15px; font-weight: 800; color: #0f172a; }

.krl-nda-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.krl-nda-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.krl-nda-field--wide { grid-column: 1 / -1; }

.krl-nda-label {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.krl-nda-form input[type="text"],
.krl-nda-form input[type="email"],
.krl-nda-form input:not([type]),
.krl-nda-form textarea,
.krl-nda-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e8ebee;
  border-radius: 9px;
  background: #fff;
  font-family: Inter, sans-serif;
  font-size: 14.5px;
  line-height: 1.45;
  color: #0f172a;
  transition: border-color .18s, box-shadow .18s;
}
.krl-nda-form textarea { resize: vertical; }
.krl-nda-form select {
  appearance: none;
  padding-right: 38px;
  background-image: linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 1px), calc(100% - 15px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.krl-nda-form input::placeholder,
.krl-nda-form textarea::placeholder { color: #a8b1ba; }

.krl-nda-form input:focus,
.krl-nda-form textarea:focus,
.krl-nda-form select:focus {
  outline: none;
  border-color: var(--pbmit-evgrid-global-color, #0077b6);
  box-shadow: 0 0 0 3px rgba(0,119,182,.14);
}

.krl-nda-field.is-invalid input,
.krl-nda-field.is-invalid textarea,
.krl-nda-field.is-invalid select { border-color: #b42318; }

.krl-nda-hint { margin: 0; font-size: 12.5px; line-height: 1.55; color: #98a0a7; }
.krl-nda-error { margin: 0; font-size: 12.5px; line-height: 1.55; font-weight: 600; color: #b42318; }

/* ---- signature pad ---- */

.krl-nda-signature { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }

.krl-sig-box {
  position: relative;
  height: 150px;
  border: 1px solid #e8ebee;
  border-radius: 10px;
  background: #fbfcfd;
  overflow: hidden;
}
.krl-sig-box.is-invalid { border-color: #b42318; }

.krl-sig-canvas {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  touch-action: none;
}

.krl-sig-hint {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #c3ccd5;
  pointer-events: none;
}

.krl-sig-rule {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 34px;
  z-index: 1;
  border-bottom: 1px dashed #d8dfe6;
  pointer-events: none;
}

.krl-sig-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.krl-sig-actions p { margin: 0; font-size: 12.5px; line-height: 1.55; color: #98a0a7; }
.krl-sig-actions button {
  flex: 0 0 auto;
  border: 1px solid #e8ebee;
  background: #fff;
  border-radius: 8px;
  padding: 6px 14px;
  font-family: Inter, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.4;
  transition: border-color .2s, color .2s;
}
.krl-sig-actions button:hover:not(:disabled) { border-color: #b42318; color: #b42318; }
.krl-sig-actions button:disabled { opacity: .45; cursor: not-allowed; }

/* ---- confirmations ---- */

.krl-nda-check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 13px 15px;
  border: 1px solid #e8ebee;
  border-radius: 10px;
  background: #fbfcfd;
  font-size: 13.5px;
  line-height: 1.6;
  color: #475569;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.krl-nda-check + .krl-nda-check { margin-top: 10px; }
.krl-nda-check:hover { border-color: #cbd5e1; }
.krl-nda-check.is-invalid { border-color: #b42318; background: #fdf3f2; }
.krl-nda-check input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--pbmit-evgrid-global-color, #0077b6);
}

.krl-nda-message {
  margin: 0;
  padding: 12px 15px;
  border-radius: 10px;
  background: #fdeceb;
  font-size: 13.5px;
  font-weight: 600;
  color: #b42318;
}

.krl-nda-submit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid #eceff2;
}
.krl-nda-submit button {
  align-self: flex-start;
  border: 0;
  border-radius: 30px;
  padding: 15px 34px;
  background: var(--pbmit-evgrid-global-color, #0077b6);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.2;
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.krl-nda-submit button:hover:not(:disabled) { background: #005f92; transform: translateY(-1px); }
.krl-nda-submit button:disabled { opacity: .6; cursor: not-allowed; }
.krl-nda-submit p { margin: 0; font-size: 12.5px; line-height: 1.6; color: #98a0a7; }
.krl-nda-submit a { color: var(--pbmit-evgrid-global-color, #0077b6); font-weight: 600; }

/* ---- success ---- */

.krl-nda-done {
  background: #fff;
  border: 1px solid #e8ebee;
  border-radius: 16px;
  padding: 44px 40px 40px;
  text-align: center;
}
.krl-nda-done-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #e3f5eb;
  color: #0f7b46;
  margin-bottom: 20px;
}
.krl-nda-done-icon svg { width: 30px; height: 30px; }
.krl-nda-done h3 {
  margin: 0 0 12px;
  font-family: Inter, sans-serif;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 800;
  color: #0f172a;
}
.krl-nda-done p { margin: 0 0 12px; font-size: 14.5px; line-height: 1.7; color: #475569; }
.krl-nda-done strong { color: #0f172a; overflow-wrap: anywhere; }
.krl-nda-done-note { font-size: 13.5px !important; color: #98a0a7 !important; }
.krl-nda-done-note button {
  border: 0;
  background: none;
  padding: 0;
  font-family: Inter, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pbmit-evgrid-global-color, #0077b6);
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
}
.krl-nda-done-note button:hover { text-decoration: underline; }

/* ---- responsive ---- */

@media (max-width: 1200px) {
  .krl-nda-summary { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .krl-nda-layout { grid-template-columns: 1fr; }
  .krl-nda-doc { position: static; max-height: 62vh; }
}

@media (max-width: 640px) {
  .krl-nda-summary { grid-template-columns: 1fr; }
  .krl-nda-grid { grid-template-columns: 1fr; }
  .krl-nda-doc { padding: 26px 22px 22px; }
  .krl-nda-form { padding: 24px 20px 22px; }
  .krl-sig-actions { flex-direction: column; gap: 10px; }
  .krl-nda-submit button { align-self: stretch; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .krl-nda-summary-card,
  .krl-nda-summary-card::before,
  .krl-nda-submit button { transition: none; }
}

/* ---- nda access gate ---- */

.krl-gate {
  max-width: 480px;
  margin: 0 auto;
  padding: 44px 40px 38px;
  background: #fff;
  border: 1px solid #e8ebee;
  border-radius: 16px;
  text-align: center;
}

.krl-gate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(0,119,182,.1);
  color: var(--pbmit-evgrid-global-color, #0077b6);
  margin-bottom: 20px;
}
.krl-gate-icon svg { width: 26px; height: 26px; }

.krl-gate h2 {
  margin: 0 0 10px;
  font-family: Inter, sans-serif;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 800;
  color: #0f172a;
}
.krl-gate > p { margin: 0 0 24px; font-size: 14.5px; line-height: 1.7; color: #64748b; }

.krl-gate-form { display: flex; flex-direction: column; gap: 8px; text-align: left; }

.krl-gate-label {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.krl-gate-input { position: relative; display: flex; align-items: center; }
.krl-gate-input input {
  width: 100%;
  padding: 13px 76px 13px 16px;
  border: 1px solid #e8ebee;
  border-radius: 10px;
  background: #fff;
  font-family: Inter, sans-serif;
  font-size: 15px;
  letter-spacing: .04em;
  color: #0f172a;
  transition: border-color .18s, box-shadow .18s;
}
.krl-gate-input input:focus {
  outline: none;
  border-color: var(--pbmit-evgrid-global-color, #0077b6);
  box-shadow: 0 0 0 3px rgba(0,119,182,.14);
}
.krl-gate-input > button {
  position: absolute;
  right: 8px;
  border: 0;
  background: none;
  padding: 6px 8px;
  font-family: Inter, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.4;
}
.krl-gate-input > button:hover { color: var(--pbmit-evgrid-global-color, #0077b6); }

.krl-gate-error {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #b42318;
}

.krl-gate-submit {
  margin-top: 8px;
  border: 0;
  border-radius: 30px;
  padding: 14px 28px;
  background: var(--pbmit-evgrid-global-color, #0077b6);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.2;
  cursor: pointer;
  transition: background .25s;
}
.krl-gate-submit:hover:not(:disabled) { background: #005f92; }
.krl-gate-submit:disabled { opacity: .6; cursor: not-allowed; }

.krl-gate-foot {
  margin: 22px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #98a0a7;
}
.krl-gate-foot a { color: var(--pbmit-evgrid-global-color, #0077b6); font-weight: 600; }

@media (max-width: 560px) {
  .krl-gate { padding: 32px 22px 28px; }
}
