:root {
  --blue: #2563eb;
  --blue-dark: #0f2a63;
  --green: #10b981;
  --amber: #f59e0b;
  --ink: #1f2937;
  --gray: #64748b;
  --line: rgba(148, 163, 184, 0.2);
  --soft: #f8fbff;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

/* Editorial articles */
.article-site-shell {
  background:
    radial-gradient(circle at 8% 0%, rgba(61, 196, 151, 0.1), transparent 30rem),
    #f7faf9;
}

.article-index {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.article-index__hero {
  max-width: 780px;
  margin-bottom: 46px;
}

.article-index__hero h1,
.article-page__header h1 {
  margin: 12px 0 18px;
  font-family: "Poppins", sans-serif;
  color: #102d26;
  letter-spacing: -0.035em;
}

.article-index__hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.04;
}

.article-index__hero p {
  max-width: 660px;
  color: #536a64;
  font-size: 1.12rem;
  line-height: 1.75;
}

.article-index__grid {
  display: grid;
  gap: 28px;
}

.article-card {
  overflow: hidden;
  border: 1px solid rgba(22, 69, 58, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(19, 55, 47, 0.08);
}

.article-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.article-card__image-link {
  display: block;
  min-height: 410px;
  overflow: hidden;
}

.article-card__image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.article-card:hover .article-card__image-link img {
  transform: scale(1.025);
}

.article-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.article-card__body h2 {
  margin: 18px 0 16px;
  font: 700 clamp(1.6rem, 3vw, 2.35rem)/1.2 "Poppins", sans-serif;
}

.article-card__body h2 a,
.article-card__cta {
  color: #123d32;
  text-decoration: none;
}

.article-card__body p {
  color: #5c716b;
  line-height: 1.75;
}

.article-card__cta {
  margin-top: 20px;
  font-weight: 800;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #648077;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.article-page {
  padding-bottom: 100px;
}

.article-page__header {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 34px;
  text-align: center;
}

.article-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 38px;
  color: #71867f;
  font-size: 0.88rem;
}

.article-breadcrumb a {
  color: #356b5e;
  text-decoration: none;
}

.article-page__header h1 {
  font-size: clamp(2.2rem, 5vw, 4.35rem);
  line-height: 1.07;
}

.article-page__dek {
  max-width: 780px;
  margin: 0 auto 24px;
  color: #536a64;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.article-meta--header {
  justify-content: center;
}

.article-page__hero {
  width: min(1280px, calc(100% - 40px));
  margin: 30px auto 68px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(15, 54, 45, 0.16);
}

.article-page__hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-page__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  gap: 64px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.article-page__aside {
  position: relative;
}

.article-toc {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 13px;
  padding: 24px;
  border: 1px solid rgba(22, 69, 58, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
}

.article-toc strong {
  margin-bottom: 4px;
  color: #173f35;
}

.article-toc a {
  color: #627870;
  font-size: 0.9rem;
  line-height: 1.4;
  text-decoration: none;
}

.article-toc a:hover {
  color: #158160;
}

.article-content {
  color: #344f48;
  font-size: 1.04rem;
  line-height: 1.85;
}

.article-content > p:first-child {
  color: #1d3d34;
  font-size: 1.18rem;
}

.article-content h2 {
  scroll-margin-top: 24px;
  margin: 56px 0 16px;
  font: 700 clamp(1.55rem, 3vw, 2.05rem)/1.25 "Poppins", sans-serif;
  color: #133c31;
  letter-spacing: -0.02em;
}

.article-content p {
  margin: 0 0 20px;
}

.article-callout {
  margin: 36px 0 44px;
  padding: 26px 28px;
  border-left: 4px solid #24a979;
  border-radius: 0 18px 18px 0;
  background: #e9f7f1;
}

.article-callout strong {
  color: #0f684e;
}

.article-callout p {
  margin: 6px 0 0;
}

.article-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.article-form-grid > div {
  padding: 24px;
  border: 1px solid rgba(22, 69, 58, 0.12);
  border-radius: 18px;
  background: #fff;
}

.article-form-grid strong {
  color: #12644d;
  font-family: "Poppins", sans-serif;
}

.article-form-grid p {
  margin: 8px 0 0;
  font-size: 0.94rem;
  line-height: 1.68;
}

.article-checklist,
.article-numbered-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding-left: 0;
  list-style: none;
}

.article-checklist li,
.article-numbered-list li {
  position: relative;
  padding: 15px 18px 15px 50px;
  border: 1px solid rgba(22, 69, 58, 0.1);
  border-radius: 14px;
  background: #fff;
}

.article-checklist li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  color: #149268;
  font-weight: 800;
}

.article-numbered-list {
  counter-reset: article-steps;
}

.article-numbered-list li {
  counter-increment: article-steps;
}

.article-numbered-list li::before {
  content: counter(article-steps);
  position: absolute;
  left: 16px;
  top: 13px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: #daf2e8;
  color: #12664e;
  font-size: 0.78rem;
  font-weight: 800;
}

.article-sources {
  margin-top: 56px;
  padding: 28px;
  border-radius: 20px;
  background: #173d34;
  color: #d9eae5;
}

.article-sources h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1.35rem;
}

.article-sources ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.article-sources a {
  color: #aee9d6;
}

.article-disclaimer {
  margin-top: 24px !important;
  color: #71847e;
  font-size: 0.84rem;
  font-style: italic;
}

@media (max-width: 880px) {
  .article-card--featured,
  .article-page__layout {
    grid-template-columns: 1fr;
  }

  .article-page__aside {
    display: none;
  }

  .article-card__image-link {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .article-index,
  .article-page__header {
    width: min(100% - 28px, 1180px);
    padding-top: 44px;
  }

  .article-card__body {
    padding: 28px 24px 34px;
  }

  .article-card__image-link {
    min-height: 230px;
  }

  .article-page__hero,
  .article-page__layout {
    width: calc(100% - 28px);
  }

  .article-page__hero {
    margin: 18px auto 42px;
    border-radius: 20px;
  }

  .article-form-grid {
    grid-template-columns: 1fr;
  }

  .article-breadcrumb {
    flex-wrap: wrap;
    margin-bottom: 26px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 14px;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #edf4ff 55%, #dfeafc 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(37, 99, 235, 0.2);
  color: #0f2a63;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.42);
  outline-offset: 3px;
}

:where(h1, h2, h3) {
  text-wrap: balance;
}

:where(p, li) {
  text-wrap: pretty;
}

body.has-floating-demo-bar {
  padding-bottom: 64px;
}
.floating-demo-bar {
  position: fixed;
  left: 50%;
  bottom: 10px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(720px, calc(100% - 28px));
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: #0f172a;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px) saturate(115%);
  -webkit-backdrop-filter: blur(22px) saturate(115%);
  transform: translateX(-50%);
}
.floating-demo-bar__content {
  display: grid;
  gap: 0;
  max-width: 30rem;
}
.floating-demo-bar__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.floating-demo-bar__text {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.floating-demo-bar__subtext {
  margin: 0;
  color: #334155;
  font-size: 0.8rem;
  line-height: 1.25;
}
.floating-demo-bar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex: none;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #0f172a;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.floating-demo-bar__link-arrow {
  font-size: 1rem;
}
.floating-demo-bar__link:hover,
.floating-demo-bar__link:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  cursor: pointer;
}

:where(section, footer)[id] {
  scroll-margin-top: 96px;
}

.page-shell {
  width: min(1440px, calc(100% - 32px));
  margin: 22px auto 40px;
}

.site-card,
.feature-strip,
.ess-preview,
.reasons,
.site-footer {
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow);
}

.site-card {
  overflow: visible;
  container-name: site-card;
  container-type: inline-size;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}



.brand-lockup--small {
  gap: 14px;
  min-width: max-content;
}

.brand-lockup--small strong {
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: #17305f;
}


.logo-mark {
  position: relative;
  width: 52px;
  height: 52px;
  flex: none;
}

.logo-mark__dot,
.logo-mark__left,
.logo-mark__right {
  position: absolute;
  display: block;
}

.logo-mark__dot {
  top: 2px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #14b8a6);
}

.logo-mark__left {
  left: 2px;
  bottom: 0;
  width: 20px;
  height: 42px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #4f80ff, #2253de);
}

.logo-mark__right {
  right: 0;
  bottom: 0;
  width: 38px;
  height: 42px;
  border-radius: 12px;
  clip-path: polygon(18% 0, 100% 0, 55% 100%, 0 100%);
  background: linear-gradient(180deg, #7bd33c, #3ebf4d);
}

.brand-lockup--small .brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-lockup--small strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.85rem;
  color: #0e2158;
}

.brand-lockup--small span {
  letter-spacing: 0.28em;
  font-size: 0.9rem;
  font-weight: 800;
  color: #5ab431;
}

.brand-lockup--inverse strong,
.brand-lockup--inverse span {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
}


.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

@media (min-width: 861px) {
  .site-nav {
    position: relative;
    left: -50px;
  }
}

.nav-item {
  position: relative;
}

.nav-trigger,
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #24324a;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-link:hover,
.nav-link:focus-visible,
.nav-item.is-open .nav-trigger {
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-dark);
  outline: none;
}

.nav-trigger__chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-item.is-open .nav-trigger__chevron {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 580px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-nav > .nav-item:first-child .nav-panel {
  left: -72px;
}

.nav-item:hover .nav-panel,
.nav-item:focus-within .nav-panel,
.nav-item.is-open .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-panel__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) 220px;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.nav-panel__content--compact {
  min-width: 460px;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
}

.nav-panel__content--products {
  min-width: 920px;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: start;
}

.nav-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.nav-panel__group {
  display: grid;
  gap: 8px;
}

.nav-panel__label {
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-panel__group a,
.nav-panel__promo a {
  padding: 10px 12px;
  border-radius: 14px;
  color: #0f172a;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-panel__group a:hover,
.nav-panel__promo a:hover {
  background: #f2f7ff;
  color: var(--blue);
}

.nav-panel__promo {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #0d2d74, #1e4ba9);
  color: #ffffff;
}

.nav-panel__promo strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
}

.nav-product {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-product:hover {
  color: inherit;
  background: linear-gradient(180deg, #fdfefe, #eef5ff);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}

.nav-product__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--icon-start, #1e4ba9), var(--icon-end, #2563eb));
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.nav-product__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.nav-product__body {
  display: grid;
  gap: 4px;
}

.nav-product__body strong {
  font-size: 0.95rem;
  line-height: 1.35;
}

.nav-product__body span {
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.5;
}

.nav-panel__promo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.nav-panel__eyebrow {
  color: #9ae6b4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-panel__promo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.header-actions,
.hero-actions,
.footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}



.site-header .button--primary {
  padding: 12px 22px;
  border-radius: 18px;
  box-shadow: none;
  white-space: nowrap;
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.14);
}

.site-header .header-login,
.site-header .button {
  font-size: 0.86rem;
}

/*
 * Respond to the header's containing card, rather than the browser viewport.
 * This keeps Resources clear of Login when the site is embedded or capped.
 */
@container site-card (max-width: 1500px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding-inline: 18px;
  }

  .brand-lockup--small strong {
    font-size: 1.45rem;
  }

  .site-nav {
    grid-column: 2;
    grid-row: 1;
    gap: 0;
  }

  .nav-trigger,
  .nav-link {
    gap: 7px;
    padding-inline: 8px;
    font-size: 0.78rem;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 8px;
  }

  .site-header .button--primary {
    padding-inline: 15px;
  }
}

.button--primary {
  background: linear-gradient(135deg, #2f67ec, #2454d8);
  color: #ffffff;
}

.button--secondary,
.button--ghost {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.2);
  color: #0e2158;
}

.button--success {
  background: linear-gradient(135deg, #1fcd78, #10b981);
  color: #ffffff;
}

.button--outline {
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.28);
  background: rgba(255, 255, 255, 0.92);
}

.button--large {
  padding: 14px 24px;
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 12px;
  background: #ffffff;
  font-weight: 700;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(240, 246, 255, 0.96), rgba(238, 245, 255, 0.92)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(16, 185, 129, 0.06));
}

.hero-copy {
  grid-row: 2;
  padding: 18px 6px;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.09);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-copy h1,
.ess-preview__copy h2,
.reasons__lead h2,
.footer-copy h2 {
  margin: 18px 0 14px;
  font-family: "Poppins", sans-serif;
  color: #0e2158;
  line-height: 1.06;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 3.8vw, 4.5rem);
}

.hero-copy p,
.ess-preview__copy p,
.reason p,
.footer-copy p,
.footer-brand p {
  color: #475569;
  line-height: 1.72;
}

.hero-copy p,
.ess-preview__copy p {
  font-size: 1.05rem;
}

.hero-slider {
  position: relative;
  min-height: 260px;
  margin-top: 18px;
}

.hero-slide {
  display: none;
  padding: 22px 24px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.hero-slide.is-active {
  display: block;
}

.hero-slide__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #0f8a5f;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-slider__controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin: 16px 0 22px;
}

.hero-slider__nav {
  padding: 10px 14px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 12px;
  background: #ffffff;
  color: #0e2158;
  font-weight: 700;
  cursor: pointer;
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-slider__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
  cursor: pointer;
}

.hero-slider__dot.is-active {
  width: 34px;
  background: linear-gradient(135deg, #22c55e, #2563eb);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.stat__icon,
.feature-box__icon,
.reason__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  font-weight: 800;
}

.stat__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 0.82rem;
  color: var(--blue);
}

.stat strong {
  display: block;
  font-size: 1.05rem;
  font-family: "Poppins", sans-serif;
}

.stat p {
  margin: 2px 0 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.hero-visual {
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero-visual__slider {
  position: relative;
  width: 100%;
}

.hero-visual__image,
.ess-preview__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1717 / 916;
  min-height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.hero-visual__image {
  height: clamp(360px, calc(100vh - 190px), 600px);
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: top center;
}

.hero-visual__slider .hero-visual__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease-in-out;
}

.hero-visual__slider .hero-visual__image.is-active {
  position: relative;
  opacity: 1;
  z-index: 1;
}

.hero-visual__controls {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-visual__arrow {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(71, 85, 105, 0.58);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero-visual__arrow:hover,
.hero-visual__arrow:focus-visible {
  transform: translateY(-1px);
  background: rgba(29, 78, 216, 0.78);
  border-color: rgba(255, 255, 255, 0.82);
  outline: none;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(219, 229, 243, 0.84);
}

.feature-box,
.reasons__lead,
.reason {
  background: rgba(255, 255, 255, 0.94);
}

.feature-box {
  position: relative;
  min-height: 150px;
  padding: 22px 16px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.94);
}


.feature-box__icon {
  position: relative;
  z-index: 1;
  margin: 0 auto 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}


.feature-box h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: #ffffff;
  text-shadow: 0 4px 14px rgba(15, 23, 42, 0.38);
}


.color-green { color: #059669; }
.color-blue { color: #2563eb; }
.color-teal { color: #10b981; }
.color-amber { color: #f59e0b; }
.color-violet { color: #7c3aed; }
.color-cyan { color: #06b6d4; }
.color-sky { color: #3b82f6; }
.color-orange { color: #f97316; }
.color-purple { color: #8b5cf6; }
.color-ink { color: #1e293b; }

.ess-preview {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.ess-preview__copy {
  padding: 10px 6px;
}

.ess-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.ess-pill {
  padding: 12px 14px;
  border-radius: 14px;
  background: #f5f9ff;
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: #2756bb;
  font-weight: 600;
}

.ess-preview__visual {
  display: flex;
  justify-content: center;
}

.dashboard-gallery {
  width: 100%;
}

.dashboard-showcase {
  display: grid;
  gap: 22px;
  width: 100%;
  padding: 24px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
}

.dashboard-showcase__intro {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.dashboard-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-showcase__intro h3 {
  margin: 0;
  color: #0e2158;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  line-height: 1.2;
}

.dashboard-showcase__intro p {
  margin: 0;
  color: #64748b;
}

.dashboard-showcase__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dashboard-showcase__tab {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.72);
  color: #47607f;
  font-size: 0.92rem;
  font-weight: 600;
}

.dashboard-showcase__tab--active {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.dashboard-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dashboard-showcase__panel {
  position: relative;
  cursor: zoom-in;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.dashboard-showcase__panel:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.dashboard-showcase__panel:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 4px;
}

.dashboard-showcase__hint {
  color: #2563eb;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.74);
  backdrop-filter: blur(10px);
}

.image-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.96));
  box-shadow: 0 36px 100px rgba(15, 23, 42, 0.38);
}

.image-lightbox__close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox__copy {
  display: grid;
  gap: 4px;
  padding-right: 56px;
}

.image-lightbox__copy strong {
  color: #0e2158;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
}

.image-lightbox__copy span {
  color: #64748b;
}

.image-lightbox__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
}

body.has-lightbox-open {
  overflow: hidden;
}

.enquiry-popup[hidden] {
  display: none;
}

.enquiry-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}

.enquiry-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.54);
  backdrop-filter: blur(8px);
}

.enquiry-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 32px 90px rgba(15, 23, 42, 0.28);
}

.enquiry-popup__dialog h2 {
  margin: 16px 0 10px;
  font: 700 clamp(1.7rem, 4vw, 2.3rem)/1.15 "Poppins", sans-serif;
  color: #0e2158;
}

.enquiry-popup__dialog > p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.enquiry-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 50%;
  background: #fff;
  color: #334155;
  font-size: 1.5rem;
}

body.has-enquiry-popup-open {
  overflow: hidden;
}

@media (max-width: 620px) {
  .enquiry-popup {
    padding: 10px;
  }

  .enquiry-popup__dialog {
    padding: 24px 18px;
    border-radius: 20px;
  }
}

.dashboard-showcase__panel {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.dashboard-showcase__label {
  display: grid;
  gap: 4px;
  padding: 4px 6px 0;
}

.dashboard-showcase__label strong {
  color: #0e2158;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.dashboard-showcase__label span {
  color: #64748b;
  font-size: 0.9rem;
}

.reasons {
  display: grid;
  grid-template-columns: 1.2fr repeat(5, 1fr);
  gap: 1px;
  margin-top: 18px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(219, 229, 243, 0.84);
}

.reasons__lead,
.reason {
  padding: 28px 18px;
}

.reasons__lead {
  display: flex;
  align-items: center;
}

.reasons__lead h2,
.reason h3,
.footer-copy h2 {
  margin: 0;
}

.reason__icon {
  margin-bottom: 14px;
}

.reason p {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0e2d73, #123d93 56%, #1849af);
  color: #ffffff;
}

.footer-brand p,
.footer-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}


@media (max-width: 1160px) {
  .hero,
  .ess-preview,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dashboard-showcase {
    padding: 20px;
  }

  .dashboard-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reasons__lead {
    grid-column: 1 / -1;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 18px;
  }

  .site-nav {
    justify-content: center;
    gap: 2px;
  }

  .nav-trigger,
  .nav-link {
    padding-inline: 10px;
    font-size: 0.88rem;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 20px, 680px);
    margin: 12px auto 28px;
  }

  .dashboard-showcase__grid {
    grid-template-columns: 1fr;
  }

  .dashboard-showcase__tabs {
    gap: 10px;
  }

  .dashboard-showcase__tab {
    width: 100%;
    text-align: center;
  }

  .site-header {
    grid-template-columns: auto auto;
    padding: 14px 16px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
    grid-column: 1 / -1;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: grid;
  }

  .site-nav {
    gap: 10px;
  }

  .nav-item,
  .nav-link,
  .nav-trigger {
    width: 100%;
  }

  .nav-trigger,
  .nav-link {
    justify-content: flex-start;
    padding: 14px 16px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.86);
  }

  .nav-panel {
    position: static;
    min-width: 0;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-item.is-open .nav-panel {
    display: block;
  }

  .nav-panel__content,
  .nav-panel__content--compact,
  .nav-panel__content--products {
    min-width: 0;
    grid-template-columns: 1fr;
    padding: 14px;
    box-shadow: none;
  }

  .nav-products-grid {
    grid-template-columns: 1fr;
  }

  .header-actions {
    gap: 10px;
  }

  .header-login,
  .header-actions .button,
  .hero-actions .button,
  .footer-actions .button {
    width: 100%;
    text-align: center;
  }

  .hero,
  .feature-strip,
  .reasons,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 20px;
  }

  .hero-copy h1 {
    font-size: 2.3rem;
  }

  .hero-slider {
    min-height: 310px;
  }

  .hero-slider__controls,
  .hero-actions,
  .footer-actions,
  .header-actions {
    flex-direction: column;
  }

  .stats-row,
  .feature-strip,
  .footer-actions {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    display: grid;
  }

  .ess-preview {
    padding: 18px;
  }

  .site-footer {
    padding: 18px;
  }

  .hero-visual__image,
  .ess-preview__image {
    border-radius: 22px;
  }
}

.portal-shell {
  min-height: 100vh;
  padding: 32px 20px 48px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.14), transparent 30%),
    linear-gradient(180deg, #eff5ff 0%, #f8fbff 100%);
}

.portal-page {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.portal-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.portal-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-shell {
  background:
    radial-gradient(circle at 8% 0%, rgba(37, 99, 235, 0.12), transparent 30rem),
    radial-gradient(circle at 96% 10%, rgba(16, 185, 129, 0.09), transparent 28rem),
    #f3f6fb;
}

.admin-shell .portal-page {
  width: min(1540px, 100%);
}

.admin-shell .portal-header {
  justify-content: space-between;
  padding: 10px 4px;
}

.admin-shell .portal-header__actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-login-shell {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.16), transparent 28rem),
    radial-gradient(circle at 90% 85%, rgba(16, 185, 129, 0.12), transparent 26rem),
    #f3f6fb;
}

.admin-login-page {
  display: grid;
  gap: 24px;
  width: min(480px, 100%);
}

.admin-login-page > .brand-lockup,
.admin-login-page > .portal-inline-link {
  justify-self: center;
}

.admin-login-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.13);
  backdrop-filter: blur(20px);
}

.admin-login-card h1 {
  margin: 16px 0 12px;
  font: 700 2rem/1.15 "Poppins", sans-serif;
  color: #0e2158;
}

.admin-sidepanel__card {
  padding: 24px;
}

.admin-sidepanel__card h2 {
  font-size: 1.45rem;
}

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

.portal-layout--wide {
  grid-template-columns: minmax(320px, 420px) minmax(0, 720px);
}

.portal-panel,
.portal-card {
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.portal-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.98));
}

.portal-panel--dark {
  background: linear-gradient(180deg, #0b2f6f, #123d8d);
  color: #ffffff;
}

.portal-panel--dark p,
.portal-panel--dark .portal-feature p,
.portal-panel--dark .portal-note p {
  color: rgba(255, 255, 255, 0.82);
}

.portal-panel h1,
.portal-card h2 {
  margin: 12px 0 12px;
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
}

.portal-panel h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.portal-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.portal-panel > p,
.portal-card > p {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

.portal-feature-list,
.portal-metrics {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.portal-feature,
.portal-metrics article {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.portal-panel:not(.portal-panel--dark) .portal-metrics article {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.18);
}
.portal-feature strong,
.portal-metrics strong,
.portal-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.portal-feature p,
.portal-metrics p,
.portal-note p {
  margin: 0;
  line-height: 1.6;
}

.portal-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.08);
}

.portal-note--light {
  background: rgba(37, 99, 235, 0.08);
}

.portal-card {
  background: rgba(255, 255, 255, 0.96);
}

.portal-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span,
.form-field legend {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 16px;
  background: #f8fbff;
  color: #0f172a;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
  background: #ffffff;
}

.form-field textarea {
  resize: vertical;
}

.form-field--checkboxes {
  margin: 0;
  padding: 0;
  border: 0;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.check-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 16px;
  background: #f8fbff;
  font-size: 0.94rem;
  color: #1e293b;
}

.check-chip input {
  margin: 0;
  accent-color: #2563eb;
}

.portal-form__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.portal-inline-link {
  color: #1d4ed8;
  font-weight: 700;
}

.form-status {
  min-height: 24px;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-pending,
.form-status.is-success,
.form-status.is-error {
  padding: 12px 14px;
  border-radius: 14px;
}

.form-status.is-pending {
  color: #92400e;
  background: #fff7ed;
}

.form-status.is-success {
  color: #166534;
  background: #ecfdf5;
}

.form-status.is-error {
  color: #b91c1c;
  background: #fef2f2;
}

@media (max-width: 960px) {
  .portal-layout,
  .portal-layout--wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .portal-header,
  .portal-header__actions,
  .portal-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-row,
  .check-grid {
    grid-template-columns: 1fr;
  }

    .portal-panel,
    .portal-card {
    padding: 24px 20px;
    border-radius: 24px;
  }
}

.enquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  margin-top: 18px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.trust-section,
.pricing-section,
.faq-section {
  margin-top: 18px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

#pricing {
  scroll-margin-top: 110px;
}


.trust-section__header,
.pricing-section__lead,
.faq-section__lead {
  max-width: 760px;
}

.trust-section__header h2,
.pricing-section__lead h2,
.faq-section__lead h2 {
  margin: 14px 0 12px;
  font-family: "Poppins", sans-serif;
  color: #0e2158;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.logo-wall span {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  color: #31538f;
  font-weight: 800;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.testimonial-card,
.pricing-card {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 42%;
  border-radius: 20px 20px 14px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}

.pricing-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -14px;
  height: 26px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.16);
  filter: blur(18px);
  opacity: 0.34;
  pointer-events: none;
  z-index: -1;
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-grid .pricing-card:nth-child(1) {
  border-color: rgba(45, 212, 191, 0.34);
  background:
    linear-gradient(180deg, rgba(8, 37, 68, 0.22), rgba(8, 37, 68, 0.72)),
    url("assets/pricing-starter-ai-bg.png") center/cover no-repeat;
  box-shadow: 0 24px 50px rgba(14, 116, 144, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: perspective(1200px) rotateX(1.5deg) rotateY(-2deg) translateY(0);
}

.pricing-grid .pricing-card:nth-child(2) {
  border-color: rgba(251, 146, 60, 0.38);
  background:
    linear-gradient(180deg, rgba(72, 27, 8, 0.18), rgba(72, 27, 8, 0.70)),
    url("assets/pricing-growth-ai-bg.png") center/cover no-repeat;
  box-shadow: 0 28px 58px rgba(249, 115, 22, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: perspective(1200px) rotateX(1deg) translateY(-4px);
}

.pricing-grid .pricing-card:nth-child(3) {
  border-color: rgba(167, 139, 250, 0.38);
  background:
    linear-gradient(180deg, rgba(23, 19, 66, 0.18), rgba(23, 19, 66, 0.76)),
    url("assets/pricing-enterprise-ai-bg.png") center/cover no-repeat;
  box-shadow: 0 24px 52px rgba(91, 33, 182, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: perspective(1200px) rotateX(1.5deg) rotateY(2deg) translateY(0);
}

.testimonial-card {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.testimonial-card p {
  margin: 0 0 18px;
  color: #334155;
  line-height: 1.7;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: #0f172a;
}

.testimonial-card span {
  margin-top: 4px;
  color: #64748b;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}







.pricing-card__label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.10);
  color: #b91c1c;  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #f8fbff;
  text-shadow: 0 4px 14px rgba(15, 23, 42, 0.32);
}

.pricing-card__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 14px rgba(15, 23, 42, 0.32);
}

.pricing-card p {
  margin: 0;
  color: rgba(241, 245, 249, 0.96);
  line-height: 1.7;
  text-shadow: 0 3px 12px rgba(15, 23, 42, 0.30);
}

.pricing-card__list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.8;
  text-shadow: 0 3px 12px rgba(15, 23, 42, 0.28);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-item {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: #0f172a;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #1d4ed8;
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.enquiry-section__lead,
.enquiry-card {
  padding: 8px;
}

.enquiry-section__lead h2,
.enquiry-card h3,
.admin-panel h1,
.admin-sidepanel__card h2 {
  margin: 14px 0 12px;
  font-family: "Poppins", sans-serif;
  color: #0e2158;
}

.enquiry-section__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.enquiry-card {
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.check-chip--stacked {
  align-items: flex-start;
}

.check-chip--stacked span {
  line-height: 1.5;
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #19c37d, #128c7e);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(18, 140, 126, 0.28);
}

.whatsapp-fab__icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.whatsapp-fab__icon svg {
  width: 22px;
  height: 22px;
}

.whatsapp-fab__text {
  display: grid;
  line-height: 1.1;
}

.whatsapp-fab__text strong {
  font-size: 0.95rem;
}

.whatsapp-fab__text span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 420px);
  gap: 22px;
  align-items: start;
}

.admin-panel,
.admin-sidepanel__card {
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.09);
  backdrop-filter: blur(16px);
}

.admin-panel {
  padding: 26px;
}

.admin-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.admin-panel__header h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.035em;
}

.admin-panel__header p {
  max-width: 680px;
  margin-bottom: 0;
  color: #64748b;
  line-height: 1.65;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.admin-stat {
  appearance: none;
  width: 100%;
  font: inherit;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 82px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #f5f8fc);
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-stat::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--stage-color, #94a3b8);
}

.admin-stat:nth-child(1),
.admin-stat:nth-child(2) {
  --stage-color: #3b82f6;
}

.admin-stat:nth-child(3),
.admin-stat:nth-child(4) {
  --stage-color: #10b981;
}

.admin-stat:nth-child(5),
.admin-stat:nth-child(6) {
  --stage-color: #f59e0b;
}

.admin-stat:nth-child(7) {
  --stage-color: #059669;
}

.admin-stat:nth-child(8),
.admin-stat:nth-child(9) {
  --stage-color: #64748b;
}

.admin-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.admin-stat strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.55rem;
  font-family: "Poppins", sans-serif;
  color: #0e2158;
}

.admin-stat span {
  color: #475569;
  text-transform: capitalize;
}

.admin-table-wrap {
  max-height: 680px;
  overflow: auto;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: #fff;
}

.crm-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(2, minmax(150px, 0.7fr)) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  background: #f8fbff;
}

.crm-toolbar label {
  display: grid;
  gap: 7px;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 700;
}

.crm-toolbar input,
.crm-toolbar select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font: inherit;
}

.crm-results-summary {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 600;
}

.crm-progress {
  margin: 18px 0;
  padding: 14px;
  border-radius: 16px;
  background: #f8fbff;
}

.crm-progress__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
  color: #475569;
  font-size: 0.8rem;
}

.crm-progress__meta strong {
  color: #1d4ed8;
  text-transform: capitalize;
}

.crm-progress__track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.crm-progress__track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #10b981);
  transition: width 0.35s ease;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f5f8fc;
  color: #475569;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-table tbody tr {
  transition: background 0.18s ease;
}

.admin-table tbody tr:hover {
  background: #f8fbff;
}

.admin-table__comments {
  min-width: 180px;
  max-width: 260px;
  color: #475569;
  line-height: 1.5;
  white-space: normal;
}

.admin-table tr.is-selected {
  background: rgba(37, 99, 235, 0.09);
  box-shadow: inset 4px 0 0 #2563eb;
}

.admin-table__action {
  padding: 9px 14px;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: capitalize;
}

.admin-badge--new,
.admin-badge--open {
  background: #dbeafe;
  color: #1d4ed8;
}

.admin-badge--contacted,
.admin-badge--qualified {
  background: #dcfce7;
  color: #15803d;
}

.admin-badge--proposal,
.admin-badge--negotiation {
  background: #fef3c7;
  color: #b45309;
}

.admin-badge--won {
  background: #d1fae5;
  color: #047857;
}

.admin-badge--lost {
  background: #e2e8f0;
  color: #475569;
}

.admin-badge--closed {
  background: #e2e8f0;
  color: #334155;
}

.admin-badge--spam {
  background: #fee2e2;
  color: #b91c1c;
}

.admin-sidepanel {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 20px;
}

.message-timeline {
  display: grid;
  gap: 12px;
}

.message-timeline__empty {
  margin: 0;
  color: #64748b;
}

.message-item {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #f8fbff;
}

.message-item header {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 0.84rem;
}

.message-item p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.message-item--inbound {
  border-color: rgba(16, 185, 129, 0.24);
}

.message-item--outbound,
.message-item--auto-reply {
  border-color: rgba(37, 99, 235, 0.24);
}

@media (max-width: 1160px) {
  .hero,
  .ess-preview,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dashboard-showcase {
    padding: 20px;
  }

  .dashboard-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reasons__lead {
    grid-column: 1 / -1;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 18px;
  }

  .site-nav {
    justify-content: center;
    gap: 2px;
  }

  .nav-trigger,
  .nav-link {
    padding-inline: 10px;
    font-size: 0.88rem;
  }
}

@media (max-width: 720px) {
  .enquiry-section,
  .trust-section,
  .pricing-section,
  .faq-section,
  .admin-panel {
    padding: 18px;
  }

  .logo-wall,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .admin-panel__header {
    flex-direction: column;
  }

  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
  }

  .whatsapp-fab__text span {
    display: none;
  }
}


















.blink-rainbow {
  animation: blink-rainbow 1.6s linear infinite;
}

.blink-rainbow:hover,
.blink-rainbow:focus-visible {
  animation-play-state: paused;
}

@keyframes blink-rainbow {
  0% {
    background: #ef4444;
    color: #ffffff;
    border-color: rgba(239, 68, 68, 0.45);
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.28);
  }

  20% {
    background: #f97316;
    color: #ffffff;
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.28);
  }

  40% {
    background: #eab308;
    color: #0f172a;
    border-color: rgba(234, 179, 8, 0.45);
    box-shadow: 0 12px 28px rgba(234, 179, 8, 0.28);
  }

  60% {
    background: #22c55e;
    color: #ffffff;
    border-color: rgba(34, 197, 94, 0.45);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.28);
  }

  80% {
    background: #3b82f6;
    color: #ffffff;
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.28);
  }

  100% {
    background: #a855f7;
    color: #ffffff;
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 12px 28px rgba(168, 85, 247, 0.28);
  }
}
.blink-bright {
  animation: blink-bright 1.35s ease-in-out infinite;
}

.blink-bright:hover,
.blink-bright:focus-visible {
  animation-play-state: paused;
}

@keyframes blink-bright {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(37, 99, 235, 0), 0 10px 24px rgba(37, 99, 235, 0.18);
    filter: brightness(1);
  }

  50% {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.14), 0 16px 34px rgba(37, 99, 235, 0.28);
    filter: brightness(1.08);
  }
}




.feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.42));
  pointer-events: none;
  z-index: 0;
}

.feature-strip .feature-box:nth-child(1) { background: url("assets/feature-em-ai.png") center/cover no-repeat; }
.feature-strip .feature-box:nth-child(2) { background: url("assets/feature-at-ai.png") center/cover no-repeat; }
.feature-strip .feature-box:nth-child(3) { background: url("assets/feature-lv-ai.png") center/cover no-repeat; }
.feature-strip .feature-box:nth-child(4) { background: url("assets/feature-py-ai.png") center/cover no-repeat; }
.feature-strip .feature-box:nth-child(5) { background: url("assets/feature-ap-ai.png") center/cover no-repeat; }
.feature-strip .feature-box:nth-child(6) { background: url("assets/feature-tk-ai.png") center/cover no-repeat; }
.feature-strip .feature-box:nth-child(7) { background: url("assets/feature-mb-ai.png") center/cover no-repeat; }
.feature-strip .feature-box:nth-child(8) { background: url("assets/feature-cl-ai.png") center/cover no-repeat; }
.feature-strip .feature-box:nth-child(9) { background: url("assets/feature-rp-ai.png") center/cover no-repeat; }
.feature-strip .feature-box:nth-child(10) { background: url("assets/feature-ai-ai.png") center/cover no-repeat; }



.implementation-guide__intro {
  color: #f97316;
}


.dashboard-preview-page {
  display: grid;
  gap: 24px;
}

.dashboard-preview-screen .portal-header {
  position: relative;
  justify-content: flex-start;
}

.dashboard-preview-screen__trial-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.dashboard-preview-screen__home-link {
  margin-left: 0;
  margin-right: 0;
}

.dashboard-preview-screen .brand-lockup {
  margin-left: auto;
}
.dashboard-preview-page__hero {
  margin-bottom: 0;
  padding: 16px 24px;
}

.dashboard-preview-page__hero h1 {
  margin: 0;
  line-height: 1.2;
}

.dashboard-preview-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.dashboard-preview-stage__copy,
.dashboard-preview-stage__viewer {
  padding: 20px;
}

.dashboard-preview-stage__copy {
  padding: 28px;
}

.dashboard-preview-stage__copy h2 {
  margin: 14px 0 12px;
  font-family: "Poppins", sans-serif;
  color: #0e2158;
}

.dashboard-preview-stage__copy p {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

.dashboard-preview-stage__tabs {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.dashboard-preview-stage__tab {
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: #f8fbff;
  color: #1e293b;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.dashboard-preview-stage__tab.is-active {
  border-color: rgba(37, 99, 235, 0.28);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(96, 165, 250, 0.14));
  color: #1744a8;
}

.dashboard-preview-stage__viewer {
  padding: 20px;
}

.dashboard-preview-stage__slides {
  position: relative;
  min-height: 540px;
}

.dashboard-preview-stage__slide {
  display: none;
  margin: 0;
}

.dashboard-preview-stage__slide.is-active {
  display: block;
}

.dashboard-preview-stage__slide img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

.dashboard-preview-stage__slide figcaption {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.dashboard-preview-stage__caption-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.dashboard-preview-stage__slide figcaption strong {
  color: #0f172a;
}

.dashboard-preview-stage__slide figcaption span {
  color: #475569;
}

.dashboard-preview-stage__controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: nowrap;
}

@media (max-width: 960px) {
  .dashboard-preview-stage {
    grid-template-columns: 1fr;
  }
}

.dashboard-preview-page__hero h1 {
  font-size: 1.05rem;
}


















.feature-box--link {
  display: block;
  color: inherit;
}

.feature-box--link:hover h2,
.feature-box--link:focus-visible h2 {
  color: #1d4ed8;
}

.hr-analytics-screen .portal-header {
  justify-content: flex-start;
}

.hr-analytics-screen .brand-lockup {
  margin-left: auto;
}

.hr-analytics-page {
  display: grid;
  gap: 24px;
}

.hr-analytics-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.hr-analytics-hero h1 {
  margin: 14px 0 12px;
}

.hr-analytics-hero__copy p {
  max-width: 760px;
}

.hr-analytics-hero__stats {
  display: grid;
  gap: 16px;
}

.hr-analytics-hero__stats article {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hr-analytics-hero__stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
  color: #ffffff;
}

.hr-analytics-hero__stats span {
  color: rgba(255, 255, 255, 0.82);
}

.hr-analytics-section {
  margin-top: 0;
}

.hr-analytics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.hr-analytics-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow);
}

.hr-analytics-card h3 {
  margin: 0 0 10px;
}

.hr-analytics-card p {
  margin: 0;
  color: #475569;
}

.hr-analytics-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hr-analytics-list {
  margin: 16px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: #334155;
}

.hr-analytics-list--check {
  list-style: none;
  padding-left: 0;
}

.hr-analytics-list--check li::before {
  content: "�";
  color: #2563eb;
  font-weight: 700;
  margin-right: 10px;
}

.hr-analytics-testimonial {
  margin: 20px 0 0;
  padding: 24px 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0e2d73, #123d93 56%, #1849af);
  color: #ffffff;
}

.hr-analytics-testimonial p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #ffffff;
}

.hr-analytics-testimonial footer {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.hr-analytics-cta {
  text-align: left;
}

@media (max-width: 960px) {
  .hr-analytics-hero,
  .hr-analytics-benefits,
  .hr-analytics-grid {
    grid-template-columns: 1fr;
  }
}

.hr-modules-screen .portal-header {
  justify-content: flex-start;
}

.hr-modules-screen .brand-lockup {
  margin-left: auto;
}

.hr-modules-page {
  display: grid;
  gap: 24px;
}

.hr-modules-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.hr-modules-hero h1 {
  margin: 14px 0 12px;
}

.hr-modules-hero__copy p {
  max-width: 760px;
}

.hr-modules-hero__aside {
  display: grid;
  gap: 16px;
}

.hr-modules-hero__aside article {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hr-modules-hero__aside strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
  color: #ffffff;
}

.hr-modules-hero__aside span {
  color: rgba(255, 255, 255, 0.82);
}

.hr-modules-section {
  margin-top: 0;
}

.hr-modules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.hr-modules-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow);
}

.hr-modules-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(16, 185, 129, 0.16));
  color: #1d4ed8;
  font-weight: 800;
}

.hr-modules-card h3 {
  margin: 0 0 10px;
}

.hr-modules-card p {
  margin: 0;
  color: #475569;
}

.hr-modules-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hr-modules-list {
  margin: 16px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: #334155;
}

.hr-modules-cta {
  text-align: left;
}

@media (max-width: 960px) {
  .hr-modules-hero,
  .hr-modules-benefits,
  .hr-modules-grid {
    grid-template-columns: 1fr;
  }
}




.lead-tracker-page {
  display: grid;
  gap: 24px;
}

.lead-tracker-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
  align-items: stretch;
}

.lead-tracker-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-hero-stat {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.lead-hero-stat strong {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 6px;
}

.lead-tracker-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, minmax(180px, 220px)) auto;
  gap: 14px;
  align-items: end;
}

.lead-tracker-toolbar .form-field {
  margin: 0;
}

.lead-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(220px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.lead-column {
  min-height: 360px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(241, 245, 249, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.18);
  display: grid;
  align-content: start;
  gap: 14px;
}

.lead-column__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lead-column__header h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.lead-column__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
}

.lead-column__list {
  display: grid;
  gap: 12px;
}

.lead-card {
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 12px;
}

.lead-card.is-selected {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 22px 44px rgba(37, 99, 235, 0.14);
}

.lead-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.lead-card__top strong,
.lead-card__meta strong {
  color: #0f172a;
}

.lead-card__meta,
.lead-card__summary {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

.lead-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lead-card__actions .button {
  padding: 9px 13px;
}

.lead-tracker-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 24px;
}

.lead-table-panel,
.lead-detail-panel {
  display: grid;
  gap: 16px;
}

.lead-empty {
  margin: 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(241, 245, 249, 0.9);
  color: #64748b;
}

.lead-tracker-detail {
  display: grid;
  gap: 18px;
}

.lead-tracker-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-tracker-detail__grid article {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.lead-tracker-detail__grid span {
  display: block;
  margin-bottom: 4px;
  color: #64748b;
  font-size: 0.84rem;
}

.lead-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .lead-tracker-hero,
  .lead-tracker-grid {
    grid-template-columns: 1fr;
  }

  .lead-tracker-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .lead-tracker-hero__stats,
  .lead-tracker-detail__grid,
  .lead-tracker-toolbar {
    grid-template-columns: 1fr;
  }
}


.comparison-section {
  display: grid;
  gap: 2rem;
  padding: 2.4rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #e2e8f0;
}

.comparison-section__lead {
  display: grid;
  gap: 0.9rem;
  max-width: 900px;
}

.comparison-section__lead h2 {
  margin: 0;
  color: #f8fafc;
}

.comparison-section__lead p {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.comparison-card {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.comparison-card h3 {
  margin: 0;
  color: #f8fafc;
}

.comparison-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.8);
}

.comparison-list {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(226, 232, 240, 0.85);
}

.comparison-list li + li {
  margin-top: 0.65rem;
}

@media (max-width: 860px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}


.comparison-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.comparison-proof {
  display: grid;
  gap: 2rem;
  padding: 2.4rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 245, 249, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.comparison-proof__lead {
  display: grid;
  gap: 0.85rem;
  max-width: 900px;
}

.comparison-proof__lead h2,
.comparison-proof__card h3 {
  margin: 0;
}

.comparison-proof__lead p,
.comparison-proof__card p {
  margin: 0;
}

.comparison-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.comparison-proof__card {
  display: grid;
  gap: 0.8rem;
  padding: 1.4rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.comparison-page {
  display: grid;
  gap: 1.8rem;
}

.comparison-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
}

.comparison-hero__copy,
.comparison-hero__panel,
.comparison-detail-section,
.comparison-detail-section__lead,
.comparison-pillar,
.comparison-table__card,
.comparison-fit-card,
.comparison-cta {
  display: grid;
  gap: 1rem;
}

.comparison-hero__panel,
.comparison-pillar,
.comparison-table__card,
.comparison-fit-card {
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.portal-panel--dark .comparison-hero__panel {
  background: rgba(15, 23, 42, 0.4);
}

.comparison-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  color: #86efac;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.comparison-highlight-list {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(226, 232, 240, 0.9);
}

.comparison-highlight-list li + li,
.comparison-pillar p,
.comparison-table__card p,
.comparison-fit-card p {
  margin-top: 0.7rem;
}

.comparison-detail-section {
  padding: 2.2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.comparison-detail-section--soft {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(241, 245, 249, 0.92));
}

.comparison-pillars,
.comparison-table,
.comparison-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.comparison-cta {
  padding: 2.4rem;
}

@media (max-width: 980px) {
  .comparison-proof__grid,
  .comparison-hero,
  .comparison-pillars,
  .comparison-table,
  .comparison-fit-grid {
    grid-template-columns: 1fr;
  }
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
}

.enquiry-card__promise {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.enquiry-card__promise span,
.marketing-card__eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
}

.trust-band,
.fit-section,
.marketing-section {
  display: grid;
  gap: 2rem;
  padding: 2.4rem;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

.trust-band__lead,
.marketing-section__lead {
  display: grid;
  gap: 0.8rem;
  max-width: 920px;
}

.trust-band__grid,
.marketing-grid,
.fit-section {
  display: grid;
  gap: 1.2rem;
}

.trust-band__grid,
.marketing-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-band__card,
.marketing-card,
.fit-section__column {
  display: grid;
  gap: 0.75rem;
  padding: 1.4rem;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(248, 250, 252, 0.9);
}

.comparison-list--dark {
  color: #1e293b;
}

.mobile-lead-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: none;
  gap: 0.65rem;
  padding: 0.7rem;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.24);
}

.mobile-lead-bar .button {
  flex: 1;
  justify-content: center;
}

.marketing-page-layout,
.marketing-hero,
.marketing-hero__copy,
.lead-capture-form,
.comparison-inline-form {
  display: grid;
  gap: 1rem;
}

.marketing-hero {
  grid-template-columns: 1fr;
}

.marketing-cta-panel,
.comparison-inline-form {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(241, 245, 249, 0.94));
}

.comparison-inline-form {
  margin-bottom: 1.2rem;
  padding: 1.4rem;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

@media (max-width: 980px) {
  .trust-band__grid,
  .marketing-grid--3,
  .fit-section {
    grid-template-columns: 1fr;
  }

  .floating-demo-bar {
    width: min(720px, calc(100% - 24px));
  }
}

@media (max-width: 860px) {
  .mobile-lead-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.has-floating-demo-bar .mobile-lead-bar {
    display: none;
  }

  body {
    padding-bottom: 5.75rem;
  }

  body.has-floating-demo-bar {
    padding-bottom: 152px;
  }
  .floating-demo-bar {
    bottom: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 20px;
  }
  .floating-demo-bar__content {
    max-width: none;
  }
  .floating-demo-bar__eyebrow,
  .floating-demo-bar__text,
  .floating-demo-bar__subtext,
  .floating-demo-bar__link {
    text-align: center;
    justify-content: center;
  }
  .floating-demo-bar__eyebrow {
    margin: 0 auto;
  }
}


.case-study-section,
.resource-hub {
  display: grid;
  gap: 2rem;
  padding: 2.4rem;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.case-study-section__lead,
.resource-hub__lead {
  display: grid;
  gap: 0.8rem;
  max-width: 920px;
}

.case-study-grid,
.resource-hub__grid,
.footer-links {
  display: grid;
  gap: 1.2rem;
}

.case-study-grid,
.resource-hub__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-study-card,
.resource-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.4rem;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(248, 250, 252, 0.92);
}

.case-study-card__metric {
  color: #2563eb;
  font-size: 1.6rem;
  font-weight: 800;
}

.resource-card {
  color: inherit;
  text-decoration: none;
}

.resource-card strong,
.footer-links a {
  color: #0f172a;
}

.footer-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-links a {
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 980px) {
  .case-study-grid,
  .resource-hub__grid,
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .case-study-grid,
  .resource-hub__grid,
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidepanel {
    position: static;
  }
}

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

  .crm-search {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .admin-shell {
    padding-inline: 10px;
  }

  .admin-shell .portal-header {
    align-items: flex-start;
  }

  .admin-shell .portal-header__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .crm-toolbar {
    grid-template-columns: 1fr;
  }

  .crm-search {
    grid-column: auto;
  }
}

/* Consistent compact typography across every header breakpoint. */
.site-header .brand-lockup--small strong {
  font-size: 1.45rem;
}

.site-header .nav-trigger,
.site-header .nav-link {
  font-size: 0.78rem;
}

.site-header .header-login,
.site-header .button {
  font-size: 0.86rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}







