@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap");

:root {
  --chessent-primary: #1aa4b5;
  --chessent-secondary: #158a98;
  --chessent-accent: #117684;
  --chessent-ink: #13373d;
  --chessent-muted: #5d7478;
  --chessent-border: #d5e8eb;
  --chessent-soft: #e8f5f7;
  --chessent-light: #f3fbfc;
  --chessent-pale: #f8fdfe;
  --chessent-warm: #dff6f9;
  --chessent-white: #ffffff;
  --chessent-shadow: 0 22px 60px rgba(26, 164, 181, 0.12);
  --chessent-shadow-soft: 0 14px 34px rgba(26, 164, 181, 0.1);
}

.chessent-preloader {
  position: fixed;
  inset: 0;
  z-index: 120000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(26, 164, 181, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(17, 118, 132, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(243, 251, 252, 0.96) 0%, rgba(232, 245, 247, 0.98) 100%);
  backdrop-filter: blur(8px);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.chessent-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.chessent-preloader__panel {
  width: min(100%, 360px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 30px 28px 28px;
  border: 1px solid rgba(21, 138, 152, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 28px 70px rgba(19, 55, 61, 0.12);
}

.chessent-preloader__visual {
  width: min(100%, 230px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.chessent-preloader__svg {
  width: 100%;
  height: auto;
}

.chessent-preloader__orbit {
  fill: none;
  stroke-linecap: round;
  transform-origin: center;
  transform-box: fill-box;
}

.chessent-preloader__orbit--outer {
  stroke-width: 4;
  stroke-dasharray: 180 420;
  animation: chessentLoaderSpin 2.8s linear infinite;
}

.chessent-preloader__orbit--inner {
  stroke: rgba(17, 118, 132, 0.24);
  stroke-width: 3;
  stroke-dasharray: 110 360;
  animation: chessentLoaderSpinReverse 2.2s linear infinite;
}

.chessent-preloader__pulse {
  fill: none;
  stroke: rgba(26, 164, 181, 0.88);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 44 200;
  animation: chessentLoaderPulse 1.8s ease-in-out infinite;
}

.chessent-preloader__logo-mark {
  transform-origin: center;
  transform-box: fill-box;
  animation: chessentLoaderFloat 2.4s ease-in-out infinite;
}

.chessent-preloader__logo-disc {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(21, 138, 152, 0.16);
  stroke-width: 4;
  filter: drop-shadow(0 12px 26px rgba(19, 55, 61, 0.16));
}

.chessent-preloader__logo-image {
  filter: drop-shadow(0 8px 18px rgba(26, 164, 181, 0.22));
}

.chessent-preloader__eyebrow,
.chessent-preloader__copy {
  margin: 0;
  text-align: center;
}

.chessent-preloader__eyebrow {
  color: var(--chessent-primary);
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.chessent-preloader__copy {
  color: var(--chessent-ink);
  font-family: "Figtree", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chessent-preloader__copy span::after {
  content: "...";
  display: inline-block;
  width: 1.35em;
  overflow: hidden;
  vertical-align: bottom;
  animation: chessentLoaderDots 1.4s steps(4) infinite;
}

@keyframes chessentLoaderSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes chessentLoaderSpinReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes chessentLoaderPulse {
  0%,
  100% {
    stroke-dashoffset: 0;
    opacity: 0.45;
  }

  50% {
    stroke-dashoffset: -74;
    opacity: 1;
  }
}

@keyframes chessentLoaderFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes chessentLoaderDots {
  0% {
    width: 0;
  }

  100% {
    width: 1.35em;
  }
}

html {
  scroll-behavior: smooth;
}

body.chessent-site {
  margin: 0;
  color: var(--chessent-ink);
  background:
    radial-gradient(circle at top right, rgba(58, 93, 165, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fb 100%);
  font-family: "Figtree", sans-serif;
}

.chessent-site img {
  display: block;
  width: 100%;
}

.chessent-site a {
  color: inherit;
}

@media (max-width: 767px) {
  .chessent-preloader__panel {
    padding: 24px 20px 22px;
    border-radius: 28px;
  }

  .chessent-preloader__visual {
    width: min(100%, 190px);
  }

  .chessent-preloader__copy {
    font-size: 0.84rem;
    letter-spacing: 0.06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chessent-preloader,
  .chessent-preloader * {
    animation: none !important;
    transition: none !important;
  }
}

.section-space {
  padding: 96px 0;
}

.section-space-sm {
  padding: 72px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--chessent-primary);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--chessent-primary), var(--chessent-warm));
  content: "";
}

.section-heading {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-copy,
.section-copy p {
  color: var(--chessent-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-copy p + p {
  margin-top: 14px;
}

.eyebrow-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.btn-brand,
.btn-outline-brand,
.btn-link-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-brand {
  padding: 15px 24px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--chessent-primary), var(--chessent-secondary));
  color: var(--chessent-white);
  box-shadow: 0 18px 32px rgba(36, 65, 124, 0.24);
}

.btn-outline-brand {
  padding: 15px 24px;
  border: 1px solid rgba(58, 93, 165, 0.22);
  background: rgba(255, 255, 255, 0.88);
  color: var(--chessent-secondary);
}

.btn-link-brand {
  padding: 0;
  color: var(--chessent-primary);
}

.btn-brand:hover,
.btn-outline-brand:hover,
.btn-link-brand:hover {
  transform: translateY(-2px);
}

.chessent-topbar {
  background: var(--chessent-ink);
  color: rgba(255, 255, 255, 0.82);
}

.chessent-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 52px;
}

.chessent-topbar-links,
.chessent-socials,
.chessent-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.chessent-topbar-links a,
.chessent-socials a,
.chessent-inline-list a {
  color: inherit;
  font-size: 0.95rem;
  text-decoration: none;
}

.chessent-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.chessent-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  border-bottom: 1px solid rgba(16, 33, 54, 0.06);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.chessent-header .navbar {
  padding: 18px 0;
}

.chessent-header .navbar-toggler {
  padding: 10px 12px;
  border: 1px solid rgba(16, 33, 54, 0.12);
  border-radius: 14px;
}

.chessent-header .navbar-toggler:focus {
  box-shadow: none;
}

.chessent-header .navbar-toggler-icon {
  width: 1.4rem;
  height: 1.4rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2816,33,54,0.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.chessent-brand {
  display: flex;
  align-items: center;
}

.chessent-brand img {
  width: auto;
  height: 52px;
}

.chessent-nav .nav-link {
  padding: 10px 12px;
  color: var(--chessent-ink);
  font-weight: 600;
}

.chessent-nav .nav-link:hover,
.chessent-nav .nav-link.is-active {
  color: var(--chessent-primary);
}

.chessent-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 232, 218, 0.9), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(58, 93, 165, 0.14), transparent 22%),
    linear-gradient(135deg, #eff4fa 0%, #ffffff 58%, #eef5fb 100%);
}

.chessent-hero::after {
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 93, 165, 0.12), transparent 65%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy {
  margin-top: 24px;
  max-width: 680px;
  color: var(--chessent-muted);
  font-size: 1.08rem;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.metric-card,
.surface-card,
.detail-card,
.testimonial-card,
.faq-card,
.contact-card,
.gallery-card,
.support-card {
  border: 1px solid rgba(16, 33, 54, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--chessent-shadow-soft);
}

.metric-card {
  padding: 24px;
}

.metric-card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.metric-card span {
  display: block;
  margin-top: 10px;
  color: var(--chessent-muted);
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual-shell {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--chessent-shadow);
}

.hero-visual-shell img {
  min-height: 540px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  right: -12px;
  bottom: 38px;
  width: min(290px, 86%);
  padding: 22px;
}

.floating-card h4,
.surface-card h3,
.detail-card h3,
.contact-card h3,
.team-card h3,
.testimonial-card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.floating-card p,
.surface-card p,
.detail-card p,
.contact-card p,
.team-card p,
.testimonial-card p,
.support-card p {
  margin: 12px 0 0;
  color: var(--chessent-muted);
  line-height: 1.72;
}

.surface-card,
.detail-card,
.contact-card,
.support-card {
  height: 100%;
  padding: 28px;
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(58, 93, 165, 0.14), rgba(255, 232, 218, 0.8));
  color: var(--chessent-primary);
  font-size: 1.15rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--chessent-ink);
  line-height: 1.65;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--chessent-primary), var(--chessent-secondary));
  color: var(--chessent-white);
  font-size: 0.65rem;
  font-weight: 800;
  content: "✓";
}

.page-hero {
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at top left, rgba(255, 232, 218, 0.7), transparent 22%),
    linear-gradient(135deg, rgba(36, 65, 124, 0.98), rgba(16, 33, 54, 0.96));
  color: var(--chessent-white);
}

.page-hero .section-heading,
.page-hero .section-copy,
.page-hero .breadcrumb,
.page-hero .breadcrumb a {
  color: inherit;
}

.breadcrumb {
  gap: 10px;
  margin-top: 18px;
  font-size: 0.95rem;
}

.split-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.media-shell {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--chessent-shadow);
}

.media-shell img {
  min-height: 420px;
  object-fit: cover;
}

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

.mosaic-grid .media-shell:first-child {
  grid-row: span 2;
}

.about-image-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.value-stack,
.service-stack,
.testimonial-stack,
.support-grid,
.gallery-grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

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

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

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

.team-card {
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(16, 33, 54, 0.08);
  border-radius: 30px;
  background: var(--chessent-white);
  box-shadow: var(--chessent-shadow-soft);
}

.team-card img {
  height: 320px;
  object-fit: contain;
  background:
    radial-gradient(circle at top, rgba(58, 93, 165, 0.12), transparent 45%),
    linear-gradient(180deg, #f9fbfd 0%, #eef4f9 100%);
}

.team-card-body {
  padding: 24px;
}

.team-role {
  display: block;
  margin-top: 10px;
  color: var(--chessent-primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-meta {
  margin-top: 12px;
  color: var(--chessent-muted);
  line-height: 1.75;
}

.service-card {
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(16, 33, 54, 0.08);
  border-radius: 28px;
  background: var(--chessent-white);
  box-shadow: var(--chessent-shadow-soft);
}

.service-card img {
  height: 230px;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.32rem;
  font-weight: 700;
}

.service-card-body p {
  margin: 14px 0 0;
  color: var(--chessent-muted);
  line-height: 1.72;
}

.service-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-tag-list span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--chessent-pale);
  color: var(--chessent-secondary);
  font-size: 0.84rem;
  font-weight: 700;
}

.testimonial-card {
  height: 100%;
  padding: 30px;
}

.rating-row {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 20px;
  color: #f5a524;
}

.testimonial-author {
  margin-top: 22px;
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.testimonial-context {
  margin-top: 6px;
  color: var(--chessent-primary);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-card {
  padding: 16px;
}

.accordion-item {
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(16, 33, 54, 0.08);
  border-radius: 20px;
  background: var(--chessent-white);
}

.accordion-button {
  padding: 20px 22px;
  color: var(--chessent-ink);
  font-weight: 700;
  background: var(--chessent-white);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--chessent-secondary);
  background: rgba(58, 93, 165, 0.05);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 0 22px 22px;
  color: var(--chessent-muted);
  line-height: 1.75;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-list a,
.contact-list span {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--chessent-muted);
  line-height: 1.7;
  text-decoration: none;
}

.contact-list i {
  margin-top: 4px;
  color: var(--chessent-primary);
}

.map-shell {
  overflow: hidden;
  min-height: 390px;
  border-radius: 30px;
  box-shadow: var(--chessent-shadow-soft);
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.inquiry-form .form-control,
.inquiry-form .form-select,
.inquiry-form .form-textarea {
  padding: 15px 18px;
  border: 1px solid var(--chessent-border);
  border-radius: 18px;
  background: var(--chessent-white);
  color: var(--chessent-ink);
  font-size: 0.98rem;
}

.inquiry-form .form-control:focus,
.inquiry-form .form-select:focus,
.inquiry-form .form-textarea:focus {
  border-color: rgba(58, 93, 165, 0.32);
  box-shadow: 0 0 0 4px rgba(58, 93, 165, 0.08);
}

.inquiry-form .form-textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-strip {
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--chessent-secondary), var(--chessent-ink));
  color: var(--chessent-white);
  box-shadow: var(--chessent-shadow);
}

.contact-strip .section-copy,
.contact-strip .section-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.video-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.video-card {
  padding: 28px;
  border: 1px solid rgba(16, 33, 54, 0.08);
  border-radius: 26px;
  background: var(--chessent-white);
  box-shadow: var(--chessent-shadow-soft);
}

.video-card h3 {
  margin: 16px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.video-card p {
  margin-top: 12px;
  color: var(--chessent-muted);
  line-height: 1.7;
}

.chessent-footer {
  padding: 82px 0 28px;
  background:
    radial-gradient(circle at top left, rgba(58, 93, 165, 0.18), transparent 18%),
    linear-gradient(135deg, #102136 0%, #173253 100%);
  color: rgba(255, 255, 255, 0.84);
}

.footer-logo {
  width: auto;
  max-width: 190px;
  height: 56px;
  object-fit: contain;
}

.footer-heading {
  margin: 0 0 16px;
  color: var(--chessent-white);
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-list,
.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-list a,
.footer-contact-list a,
.footer-contact-list span {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  line-height: 1.7;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(58, 93, 165, 0.08);
  color: var(--chessent-primary);
  font-size: 0.84rem;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-grid,
  .service-stack,
  .testimonial-stack,
  .value-stack,
  .video-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .section-space,
  .section-space-sm,
  .page-hero,
  .chessent-hero {
    padding: 72px 0;
  }

  .chessent-topbar .container,
  .contact-layout,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .chessent-topbar .container {
    display: grid;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero-metrics,
  .gallery-grid,
  .mosaic-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .hero-visual-shell img,
  .media-shell img {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .chessent-brand img {
    height: 44px;
  }

  .hero-metrics,
  .team-grid,
  .service-stack,
  .testimonial-stack,
  .value-stack,
  .video-links,
  .support-grid,
  .gallery-grid,
  .mosaic-grid {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .surface-card,
  .detail-card,
  .testimonial-card,
  .contact-card,
  .support-card,
  .video-card,
  .contact-strip {
    padding: 22px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-brand,
  .btn-outline-brand {
    width: 100%;
  }
}

body.chessent-index {
  --chessent-logo-teal: #18a7ba;
  --chessent-logo-teal-deep: #0f90a4;
  --chessent-logo-teal-soft: #e9f8fb;
  --chessent-logo-navy: #18253d;
  --chessent-logo-navy-soft: #22324f;
  --chessent-hero-ink: #0a0d13;
  --ztc-text-text-6: #667a92;
  --ztc-text-text-17: #18253d;
  --ztc-text-text-19: #18a7ba;
  --ztc-text-text-21: #667a92;
  --ztc-text-text-23: #18a7ba;
  --ztc-bg-bg-14: #18253d;
  --ztc-bg-bg-15: #0f90a4;
  --ztc-bg-bg-16: #22324f;
  --ztc-bg-bg-18: #18a7ba;
  background:
    radial-gradient(circle at top right, rgba(24, 167, 186, 0.05), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f3f8fb 100%);
}

.chessent-index main {
  overflow: hidden;
}

.chessent-index .vl-transparent-header {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 18px 0;
  z-index: 9;
}

.chessent-index .vl-transparent-header .row-bg1,
.chessent-index .header-sticky .row-bg1 {
  align-items: center;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(40, 41, 45, 0.88) 0%, rgba(40, 41, 45, 0.88) 64%, rgba(203, 203, 203, 0.94) 64%, rgba(203, 203, 203, 0.94) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 34px rgba(9, 11, 15, 0.22);
  backdrop-filter: blur(10px);
}

.chessent-index .vl-logo,
.chessent-index .vl-main-menu,
.chessent-index .vl-hero-btn {
  display: flex;
  align-items: center;
}

.chessent-index .vl-transparent-header .vl-logo a,
.chessent-index .vl-offcanvas-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.chessent-index .vl-transparent-header .vl-logo img,
.chessent-index .vl-offcanvas .vl-offcanvas-logo {
  width: auto;
  height: 48px;
  filter: none;
}

.chessent-index .vl-main-menu {
  justify-content: center;
}

.chessent-index .vl-main-menu nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  margin: 0;
}

.chessent-index .vl-main-menu ul > li > a {
  padding: 0 14px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.chessent-index .vl-main-menu ul > li a.nav-link.active,
.chessent-index .vl-main-menu ul > li:hover > a {
  color: #ffffff;
  opacity: 1;
}

.chessent-index .vl-hero-btn {
  justify-content: flex-end;
}

.chessent-index .vl-transparent-header .vl-hero-btn .btn-area1 ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
}

.chessent-index .vl-transparent-header .vl-hero-btn .btn-area1 ul li {
  margin: 0;
}

.chessent-index .vl-transparent-header .vl-hero-btn .btn-area1 ul li a {
  background: rgba(255, 255, 255, 0.92);
  color: #0a0d13;
}

.chessent-index .vl-transparent-header .vl-hero-btn .btn-area1 ul li a:hover {
  background: #18a7ba;
  color: #ffffff;
}

.chessent-index .vl-header-action-item {
  float: right;
}

.chessent-index .hero8-section-area {
  position: relative;
  overflow: hidden;
  min-height: 920px;
  padding: 180px 0 110px;
  background-color: var(--chessent-hero-ink);
}

.chessent-index .hero8-section-area::before {
  position: absolute;
  inset: 0 52% 0 0;
  background:
    radial-gradient(circle at 38% 48%, rgba(255, 255, 255, 0.06), transparent 18%),
    radial-gradient(circle at 56% 60%, rgba(255, 255, 255, 0.05), transparent 22%);
  content: "";
}

.chessent-index .hero8-section-area .row {
  --bs-gutter-x: 46px;
  --bs-gutter-y: 30px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.chessent-index .hero8-section-area .hero-header-area {
  max-width: 620px;
  padding-top: 110px;
  position: relative;
}

.chessent-index .hero8-section-area .elements23 {
  position: absolute;
  top: -34px;
  left: -34px;
  max-width: 150px;
  opacity: 0.34;
}

.chessent-index .hero8-section-area .hero-header-area h5 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.chessent-index .hero8-section-area .hero-header-area h1 {
  max-width: 620px;
  color: #ffffff;
  font-size: clamp(3.05rem, 4.3vw, 4.85rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.chessent-index .hero8-section-area .hero-header-area p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.75;
}

.chessent-index .chessent-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  align-items: center;
}

.chessent-index .vl-btn8,
.chessent-index .chessent-community-btn {
  background: linear-gradient(135deg, #18a7ba 0%, #0f90a4 100%);
  box-shadow: 0 18px 34px rgba(15, 144, 164, 0.24);
}

.chessent-index .vl-btn8::after {
  background: #ffffff;
}

.chessent-index .vl-btn8:hover {
  color: #18253d;
}

.chessent-index .chessent-ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 18px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: "Figtree", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.chessent-index .chessent-ghost-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.chessent-index .hero8-section-area .hero-header-area .widget-boxarea {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 560px;
  margin-left: 0;
  margin-right: 0;
}

.chessent-index .hero8-section-area .hero-header-area .widget-boxarea > [class*=col-] {
  width: auto;
  max-width: none;
  padding: 0;
  align-self: stretch;
}

.chessent-index .widget-stat {
  height: 100%;
  padding: 4px 0 0;
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.chessent-index .hero8-section-area .hero-header-area .widget-boxarea h4,
.chessent-index .hero8-section-area .hero-header-area .widget-boxarea a {
  color: #ffffff;
}

.chessent-index .hero8-section-area .hero-header-area .widget-boxarea h4 {
  font-size: clamp(3rem, 3.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.chessent-index .hero8-section-area .hero-header-area .widget-boxarea a {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.3;
  opacity: 1;
}

.chessent-index .widget-stat p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.45;
}

.chessent-index .chessent-hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
}

.chessent-index .chessent-hero-contact i {
  margin-right: 8px;
  color: #7ce4f0;
}

.chessent-index .hero8-section-area .img1 {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(48%, 640px);
  height: auto;
  padding: 18px 0 18px 26px;
  transform: translateY(-50%);
  background: transparent;
}

.chessent-index .hero8-section-area .img1 img {
  width: 100%;
  height: auto;
  max-height: 700px;
  border-radius: 34px 0 0 34px;
  object-fit: contain;
  object-position: center center;
  box-shadow: 0 24px 54px rgba(19, 55, 61, 0.14);
}

.chessent-index .about8-section-area {
  background:
    linear-gradient(180deg, rgba(233, 248, 251, 0.55) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.chessent-index .service8-scetion-area {
  background:
    radial-gradient(circle at top left, rgba(24, 167, 186, 0.08), transparent 18%),
    linear-gradient(180deg, #f4fbfc 0%, #eef6f9 100%);
}

.chessent-index .chessent-education-section {
  background:
    radial-gradient(circle at top center, rgba(24, 167, 186, 0.07), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.chessent-index .chessent-education-section .heading8 h5 {
  color: #18a7ba;
}

.chessent-index .chessent-education-section .heading8 h2 {
  color: #18253d;
}

.chessent-index .chessent-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.chessent-index .chessent-video-card {
  overflow: hidden;
  border: 1px solid rgba(24, 37, 61, 0.06);
  border-radius: 26px 10px 26px 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 251, 0.98));
  box-shadow: 0 22px 46px rgba(16, 33, 54, 0.08);
}

.chessent-index .chessent-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #d9eef2;
}

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

.chessent-index .chessent-video-copy {
  padding: 22px 22px 24px;
}

.chessent-index .chessent-video-copy h3 {
  margin: 0;
  color: #18253d;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.chessent-index .chessent-video-copy p {
  margin: 12px 0 0;
  color: #667a92;
  font-size: 15px;
  line-height: 1.75;
}

.chessent-index .chessent-video-cta {
  text-align: center;
}

.chessent-index .testimonial8-section-area {
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(24, 167, 186, 0.08), transparent 18%),
    linear-gradient(180deg, #fdfaf8 0%, #f6f2ef 100%);
}

.chessent-index .about8-section-area .row,
.chessent-index .service8-scetion-area .row,
.chessent-index .testimonial8-section-area .row,
.chessent-index .vl-footer6-section-area .row {
  --bs-gutter-x: 34px;
  --bs-gutter-y: 30px;
}

.chessent-index .about8-section-area .about8-imagrs-area {
  max-width: 570px;
}

.chessent-index .about8-section-area .about8-imagrs-area .row {
  --bs-gutter-x: 22px;
  --bs-gutter-y: 22px;
  align-items: stretch;
}

.chessent-index .about8-section-area .about8-imagrs-area .row > [class*=col-] {
  display: flex;
  flex-direction: column;
}

.chessent-index .about8-section-area .about8-imagrs-area .row > .col-md-5 {
  justify-content: flex-end;
}

.chessent-index .about8-section-area .about8-imagrs-area .img1,
.chessent-index .about8-section-area .about8-imagrs-area .img2 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 30px 12px 30px 12px;
  background: linear-gradient(180deg, #f4fbfc 0%, #eef5f8 100%);
  box-shadow: 0 24px 54px rgba(16, 33, 54, 0.08);
}

.chessent-index .about8-section-area .about8-imagrs-area .img1 {
  flex: 1 1 auto;
  min-height: 338px;
  padding: 10px 8px 0;
  background:
    linear-gradient(180deg, #f7fdfe 0%, #edf8fb 72%, #dff4f7 72%, #dff4f7 100%);
}

.chessent-index .about8-section-area .about8-imagrs-area .img1 img {
  width: 124%;
  height: auto;
  max-height: none;
  padding: 0;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  transform: translateY(10px);
}

.chessent-index .about8-section-area .about8-imagrs-area .img2 {
  flex: 1 1 auto;
  min-height: 432px;
}

.chessent-index .about8-section-area .about8-imagrs-area .img2 img {
  width: 100%;
  height: 432px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.chessent-index .about8-section-area .about8-imagrs-area .experianc-box {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  justify-content: center;
  border-radius: 24px 12px 24px 12px;
  background: linear-gradient(135deg, #18253d 0%, #18a7ba 100%);
  box-shadow: 0 18px 34px rgba(24, 37, 61, 0.18);
}

.chessent-index .about8-section-area .heading8 {
  max-width: 610px;
  padding-left: 16px;
}

.chessent-index .about8-section-area .row.justify-content-center .heading8 {
  max-width: 860px;
  padding-left: 0;
  margin: 0 auto;
}

.chessent-index .about8-section-area .heading8 h5,
.chessent-index .service8-scetion-area .heading8 h5 {
  color: #18a7ba;
}

.chessent-index .about8-section-area .heading8 h2,
.chessent-index .service8-scetion-area .heading8 h2 {
  max-width: 760px;
  color: #18253d;
  letter-spacing: -0.03em;
}

.chessent-index .about8-section-area .heading8 p,
.chessent-index .service8-scetion-area .heading8 p,
.chessent-index .chessent-section-copy,
.chessent-index .chessent-testimonial-copy {
  font-size: 17px;
  line-height: 1.82;
}

.chessent-index .about8-section-area .heading8 .bg-progress label {
  font-size: 15px;
}

.chessent-index .about8-section-area .heading8 .bg-progress .progress {
  height: 12px;
  background: #d9eef2;
}

.chessent-index .about8-section-area .heading8 .bg-progress .progress-inner {
  background: linear-gradient(90deg, #18a7ba 0%, #0f90a4 100%);
}

.chessent-index .about8-section-area .chessent-about-layout {
  --bs-gutter-x: 38px;
  --bs-gutter-y: 26px;
  align-items: flex-start !important;
}

.chessent-index .about8-section-area .chessent-about-copy {
  max-width: 100%;
  padding: 0 18px 0 0;
}

.chessent-index .about8-section-area .chessent-about-copy h2 {
  max-width: 640px;
}

.chessent-index .chessent-about-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 30px;
}

.chessent-index .chessent-about-feature-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 22px 20px;
  border: 1px solid rgba(24, 37, 61, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 36px rgba(17, 69, 76, 0.07);
}

.chessent-index .chessent-about-feature-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(26, 164, 181, 0.14) 0%, rgba(26, 164, 181, 0.24) 100%);
  color: #128798;
  font-size: 22px;
}

.chessent-index .chessent-about-feature-card h3 {
  margin: 0;
  color: #183743;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.chessent-index .chessent-about-feature-card p {
  margin: 8px 0 0;
  color: #5d7480;
  font-size: 15px;
  line-height: 1.75;
}

.chessent-index .chessent-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.chessent-index .chessent-about-actions .vl-btn8,
.chessent-index .chessent-about-actions .chessent-ghost-btn {
  min-width: 210px;
}

.chessent-index .chessent-about-panel {
  height: auto;
  padding: 34px 34px 32px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(26, 164, 181, 0.11), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 250, 251, 0.98) 100%);
  border: 1px solid rgba(24, 37, 61, 0.08);
  box-shadow: 0 28px 60px rgba(15, 69, 76, 0.09);
}

.chessent-index .chessent-about-panel-top h3 {
  margin: 12px 0 0;
  color: #163943;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.chessent-index .chessent-about-panel-top p {
  margin: 14px 0 0;
  color: #5f7784;
  font-size: 16px;
  line-height: 1.82;
}

.chessent-index .chessent-about-panel-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(26, 164, 181, 0.12);
  color: #148d9d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chessent-index .chessent-about-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.chessent-index .chessent-about-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 164, 181, 0.15);
  color: #205262;
  font-size: 14px;
  font-weight: 600;
}

.chessent-index .chessent-about-progress-shell {
  margin-top: 26px;
  padding: 24px 24px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(24, 37, 61, 0.06);
}

.chessent-index .chessent-about-progress-shell .progress-bar {
  margin-bottom: 18px;
}

.chessent-index .chessent-about-progress-shell .progress-bar + .progress-bar {
  margin-top: 22px;
}

.chessent-index .chessent-about-progress-shell label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  color: #183743;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.chessent-index .chessent-about-progress-shell label span {
  flex: 0 0 auto;
  color: #148d9d;
}

.chessent-index .chessent-about-progress-shell .progress {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #d9eef2;
}

.chessent-index .chessent-about-progress-shell .progress-inner {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1aa4b5 0%, #1593a3 100%);
  box-shadow: 0 8px 18px rgba(26, 164, 181, 0.18);
  transition: width 0.4s ease;
}

.chessent-index .chessent-about-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid #1aa4b5;
  border-radius: 18px;
  background: rgba(26, 164, 181, 0.08);
  color: #365967;
  font-size: 15px;
  line-height: 1.78;
}

.chessent-index .chessent-about-note strong {
  color: #123f49;
}

@media (max-width: 1199px) {
  .chessent-index .about8-section-area .chessent-about-copy {
    padding-right: 0;
  }

  .chessent-index .chessent-about-panel {
    padding: 30px 28px 28px;
  }

  .chessent-index .chessent-about-panel-top h3 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .chessent-index .about8-section-area .chessent-about-layout {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
  }

  .chessent-index .about8-section-area .chessent-about-copy,
  .chessent-index .chessent-about-panel {
    padding-left: 0;
    padding-right: 0;
  }

  .chessent-index .chessent-about-feature-card {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 18px 18px 16px;
  }

  .chessent-index .chessent-about-feature-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .chessent-index .chessent-about-feature-card h3 {
    font-size: 20px;
  }

  .chessent-index .chessent-about-actions {
    gap: 14px;
  }

  .chessent-index .chessent-about-actions .vl-btn8,
  .chessent-index .chessent-about-actions .chessent-ghost-btn {
    width: 100%;
    min-width: 0;
  }

  .chessent-index .chessent-about-panel {
    padding: 26px 22px 22px;
    border-radius: 26px;
  }

  .chessent-index .chessent-about-panel-top h3 {
    font-size: 28px;
  }

  .chessent-index .chessent-about-chip-list span {
    font-size: 13px;
  }

  .chessent-index .chessent-about-progress-shell {
    padding: 20px 18px 14px;
  }
}

.chessent-index .chessent-approach-section {
  background:
    radial-gradient(circle at top left, rgba(24, 167, 186, 0.09), transparent 20%),
    linear-gradient(180deg, #fffdfb 0%, #f8f3ef 100%);
}

.chessent-index .chessent-approach-heading {
  max-width: 860px;
  margin: 0 auto;
}

.chessent-index .chessent-approach-heading h5 {
  color: #6d5160;
}

.chessent-index .chessent-approach-heading h2 {
  max-width: 820px;
  margin: 0 auto;
  color: #513c4d;
}

.chessent-index .chessent-approach-row {
  align-items: stretch;
  --bs-gutter-x: 26px;
  --bs-gutter-y: 22px;
}

.chessent-index .chessent-approach-row > [class*=col-] {
  display: flex;
}

.chessent-index .chessent-approach-row > .col-lg-7 > .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  --bs-gutter-x: 22px;
  --bs-gutter-y: 22px;
  width: 100%;
  height: 100%;
  margin: 0;
  gap: 22px;
}

.chessent-index .chessent-approach-row > .col-lg-7 > .row > [class*=col-] {
  display: flex;
  width: 100%;
  padding: 0;
}

.chessent-index .chessent-approach-step {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 318px;
  padding: 24px 24px 26px;
  border: 1px solid rgba(24, 37, 61, 0.08);
  border-radius: 0 28px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(26, 164, 181, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 252, 0.98));
  box-shadow: 0 18px 34px rgba(24, 37, 61, 0.06);
}

.chessent-index .chessent-approach-step:hover {
  border-color: rgba(24, 167, 186, 0.24);
  box-shadow: 0 22px 42px rgba(24, 37, 61, 0.1);
}

.chessent-index .chessent-approach-step-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #167b88 0%, #146d79 55%, #0f5962 100%);
}

.chessent-index .chessent-approach-step-accent h3,
.chessent-index .chessent-approach-step-accent p {
  color: #ffffff;
}

.chessent-index .chessent-approach-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.chessent-index .chessent-approach-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 24px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #6d5160;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.chessent-index .chessent-approach-step-media {
  flex: 0 0 108px;
  width: 108px;
  height: 82px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(26, 164, 181, 0.16);
  box-shadow: 0 18px 30px rgba(16, 95, 110, 0.12);
}

.chessent-index .chessent-approach-step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chessent-index .chessent-approach-step-accent .chessent-approach-step-media {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 30px rgba(7, 47, 54, 0.22);
}

.chessent-index .chessent-approach-step h3 {
  margin: 0;
  color: #513c4d;
  max-width: 280px;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.chessent-index .chessent-approach-step p {
  margin: 14px 0 0;
  color: #687487;
  font-size: 15px;
  line-height: 1.82;
}

.chessent-index .chessent-approach-spotlight {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(24, 37, 61, 0.08);
  border-radius: 0 28px 0 28px;
  background: linear-gradient(180deg, rgba(243, 248, 247, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 22px 46px rgba(24, 37, 61, 0.08);
}

.chessent-index .chessent-approach-visual {
  visibility: visible;
  overflow: hidden;
  border-radius: 0 22px 0 22px;
}

.chessent-index .chessent-approach-visual img {
  width: 100%;
  height: 292px;
  object-fit: cover;
  object-position: center;
}

.chessent-index .chessent-approach-floating-card {
  position: absolute;
  top: 112px;
  right: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 104px;
  height: 104px;
  overflow: hidden;
  border: 4px solid #ffffff;
  border-radius: 20px 8px 20px 8px;
  background: linear-gradient(180deg, #f6fbfc 0%, #eef3f7 100%);
  box-shadow: 0 18px 34px rgba(24, 37, 61, 0.16);
  animation: chessent-float-card 4.4s ease-in-out infinite;
}

.chessent-index .chessent-approach-floating-card img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.chessent-index .chessent-approach-copy {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 12px 12px;
}

.chessent-index .chessent-approach-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(109, 81, 96, 0.12);
  color: #6d5160;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chessent-index .chessent-approach-copy h3 {
  max-width: 420px;
  margin: 14px 0 0;
  color: #513c4d;
  font-size: 31px;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.chessent-index .chessent-approach-copy p {
  margin: 14px 0 0;
  color: #687487;
  font-size: 15px;
  line-height: 1.78;
}

.chessent-index .chessent-approach-points {
  width: 100%;
  margin: 16px 0 0;
}

.chessent-index .chessent-approach-copy .vl-btn8 {
  margin-top: 20px;
}

.chessent-index .chessent-approach-points li {
  position: relative;
  padding-left: 24px;
  color: #546274;
  font-size: 14px;
  line-height: 1.75;
}

.chessent-index .chessent-approach-points li + li {
  margin-top: 10px;
}

.chessent-index .chessent-approach-points li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8db68c;
  box-shadow: 0 0 0 4px rgba(141, 182, 140, 0.16);
}

@keyframes chessent-float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.chessent-index .service8-scetion-area .service8-boxarea {
  display: flex;
  min-height: 316px;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 32px;
  border: 1px solid rgba(24, 37, 61, 0.06);
  border-radius: 0 42px 0 42px;
  box-shadow: 0 18px 38px rgba(24, 37, 61, 0.07);
}

.chessent-index .service8-scetion-area .service8-boxarea:hover {
  background: linear-gradient(135deg, #18253d 0%, #0f90a4 100%);
}

.chessent-index .service8-scetion-area .service8-boxarea .icons {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 167, 186, 0.1);
  color: #0f90a4;
  font-size: 24px;
}

.chessent-index .service8-scetion-area .service8-boxarea:hover .icons {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.chessent-index .service8-scetion-area .service8-boxarea .title {
  min-height: 56px;
  font-size: 22px;
  line-height: 1.35;
}

.chessent-index .service8-scetion-area .service8-boxarea p {
  flex: 1 1 auto;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}

.chessent-index .service8-scetion-area .service8-boxarea .readmore {
  margin-top: 22px;
}

.chessent-index .testimonial8-section-area .heading6 h5 {
  color: #18253d;
  text-align: center;
}

.chessent-index .testimonial8-section-area .heading6 h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #2b2f36;
  text-align: center;
  letter-spacing: -0.03em;
}

.chessent-index .chessent-testimonial-heading {
  max-width: 860px;
  margin: 0 auto;
}

.chessent-index .chessent-testimonial-copy {
  max-width: 720px;
  margin: 18px auto 0;
  color: #6d7280;
  text-align: center;
}

.chessent-index .chessent-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.chessent-index .chessent-testimonial-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 34px 30px 30px;
  border: 1px solid rgba(24, 37, 61, 0.08);
  border-radius: 0 36px 0 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(251, 249, 247, 0.995));
  box-shadow: 0 24px 54px rgba(37, 31, 41, 0.08);
}

.chessent-index .chessent-testimonial-card--featured {
  grid-column: span 2;
  min-height: 360px;
  padding: 44px 52px 40px;
}

.chessent-index .chessent-testimonial-stars {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  margin-bottom: 0;
}

.chessent-index .chessent-testimonial-stars li {
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  background: rgba(251, 133, 0, 0.1);
  color: #fb8500;
  border-radius: 6px;
}

.chessent-index .chessent-testimonial-card .pera {
  margin: 0;
  color: #2f3136;
  text-align: left;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.78;
}

.chessent-index .chessent-testimonial-card--featured .pera {
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  line-height: 1.56;
}

.chessent-index .chessent-testimonial-card .author-boxarea {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.chessent-index .chessent-testimonial-card .author-boxarea .img {
  flex: 0 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chessent-index .chessent-testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: #dff6f9;
  border: 4px solid #ffffff;
  box-shadow: 0 16px 30px rgba(12, 88, 101, 0.16);
}

.chessent-index .chessent-testimonial-card .author-boxarea .text {
  padding-left: 16px;
}

.chessent-index .chessent-testimonial-card .author-boxarea .text a {
  color: #18253d;
  font-size: 26px;
}

.chessent-index .chessent-testimonial-card .author-boxarea .text p {
  margin-top: 8px;
  color: #8d8f96;
  opacity: 1;
}

.chessent-index .chessent-video-cta .vl-btn8 {
  background: linear-gradient(135deg, #1aa4b5 0%, #148b99 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 18px 36px rgba(8, 95, 107, 0.22) !important;
}

.chessent-index .chessent-video-cta .vl-btn8:hover {
  background: linear-gradient(135deg, #148b99 0%, #117885 100%) !important;
  color: #ffffff !important;
}

.chessent-index .chessent-testimonial-quote {
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: rgba(43, 47, 54, 0.16);
  font-size: 56px;
  line-height: 1;
}

.chessent-index .chessent-testimonial-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 167, 186, 0.06), transparent 70%);
  pointer-events: none;
}

.chessent-index .vl-offcanvas,
.chessent-site .vl-offcanvas {
  background:
    radial-gradient(circle at top left, rgba(26, 164, 181, 0.14), transparent 28%),
    linear-gradient(180deg, #f9feff 0%, #edf8fa 100%);
  box-shadow: -18px 0 42px rgba(10, 88, 98, 0.12);
}

.homepage8-body .vl-offcanvas-overlay,
.chessent-site .vl-offcanvas-overlay {
  background: rgba(16, 69, 78, 0.34);
}

.chessent-index .vl-offcanvas .vl-offcanvas-logo,
.chessent-site .vl-offcanvas .vl-offcanvas-logo {
  filter: none !important;
}

.chessent-index .vl-offcanvas .vl-offcanvas-close button,
.chessent-site .vl-offcanvas .vl-offcanvas-close button {
  color: #148a99 !important;
}

.chessent-index .vl-offcanvas-close-toggle,
.chessent-site .vl-offcanvas-close-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(26, 164, 181, 0.1);
}

.chessent-index .vl-offcanvas-menu ul li a,
.chessent-site .vl-offcanvas-menu ul li a,
.chessent-index .vl-offcanvas-info span a,
.chessent-site .vl-offcanvas-info span a {
  color: #1b3f48 !important;
}

.chessent-index .vl-offcanvas-menu ul li.active > a,
.chessent-index .vl-offcanvas-menu ul li > a:hover,
.chessent-site .vl-offcanvas-menu ul li.active > a,
.chessent-site .vl-offcanvas-menu ul li > a:hover {
  color: #1aa4b5 !important;
}

.chessent-index .vl-offcanvas-info span a i,
.chessent-site .vl-offcanvas-info span a i {
  color: #1aa4b5 !important;
}

.chessent-index .chessent-offcanvas-card {
  margin-top: 16px;
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(26, 164, 181, 0.12), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(26, 164, 181, 0.14);
}

.chessent-index .chessent-offcanvas-card h3 {
  color: #183943;
}

.chessent-index .chessent-offcanvas-card p {
  color: #5d7480;
}

.chessent-index .chessent-footer-cta-section {
  position: relative;
  z-index: 2;
  padding: 0 0 0;
  margin-top: -10px;
}

.chessent-index .chessent-footer-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.9fr);
  gap: 32px;
  align-items: stretch;
  padding: 46px 40px;
  border-radius: 0 56px 0 56px;
  background: linear-gradient(135deg, #6d5160 0%, #765968 60%, #7a6270 100%);
  box-shadow: 0 28px 56px rgba(59, 28, 44, 0.18);
}

.chessent-index .chessent-footer-cta-main {
  max-width: 640px;
}

.chessent-index .chessent-footer-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chessent-index .chessent-footer-cta-main h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.chessent-index .chessent-footer-cta-main p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
}

.chessent-index .chessent-footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.chessent-index .chessent-cta-light-btn,
.chessent-index .chessent-cta-accent-btn,
.chessent-index .chessent-footer-cta-side-actions a,
.chessent-index .chessent-footer-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.chessent-index .chessent-cta-light-btn {
  background: rgba(255, 255, 255, 0.96);
  color: #6d5160;
}

.chessent-index .chessent-cta-accent-btn,
.chessent-index .chessent-footer-cta-side-actions a,
.chessent-index .chessent-footer-join-btn {
  background: #8db68c;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(141, 182, 140, 0.22);
}

.chessent-index .chessent-cta-light-btn:hover,
.chessent-index .chessent-cta-accent-btn:hover,
.chessent-index .chessent-footer-cta-side-actions a:hover,
.chessent-index .chessent-footer-join-btn:hover {
  transform: translateY(-2px);
}

.chessent-index .chessent-footer-cta-side {
  padding: 24px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0 36px 0 36px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.chessent-index .chessent-footer-cta-side h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.chessent-index .chessent-footer-cta-side p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.75;
}

.chessent-index .chessent-footer-cta-side-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.chessent-index .vl-footer6-section-area {
  padding: 190px 0 32px !important;
  margin-top: -88px;
  background:
    radial-gradient(circle at top left, rgba(24, 167, 186, 0.16), transparent 18%),
    linear-gradient(135deg, #18253d 0%, #22324f 100%) !important;
}

.chessent-index .chessent-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  align-items: start;
}

.chessent-index .chessent-footer-brand h3,
.chessent-index .chessent-footer-hours h3,
.chessent-index .chessent-footer-links h3,
.chessent-index .chessent-footer-contact h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.chessent-index .chessent-footer-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  margin-bottom: 18px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(8, 21, 38, 0.14);
}

.chessent-index .chessent-footer-logo-badge img {
  width: auto;
  height: 48px;
  filter: none;
}

.chessent-index .chessent-footer-brand p {
  max-width: 240px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.8;
}

.chessent-index .chessent-footer-join-btn {
  margin-top: 20px;
  min-width: 210px;
}

.chessent-index .chessent-footer-brand .social-links,
.chessent-index .chessent-footer-contact .social-links {
  display: flex;
  gap: 10px;
  margin: 22px 0 0;
}

.chessent-index .chessent-footer-brand .social-links li a,
.chessent-index .chessent-footer-contact .social-links li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: all 0.3s ease;
}

.chessent-index .chessent-footer-brand .social-links li a:hover,
.chessent-index .chessent-footer-contact .social-links li a:hover {
  background: #18a7ba;
}

.chessent-index .chessent-footer-hours ul {
  margin: 0;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.chessent-index .chessent-footer-hours ul li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 600;
}

.chessent-index .chessent-footer-hours ul li:last-child {
  border-bottom: 0;
}

.chessent-index .chessent-footer-hours ul li span:last-child {
  color: #ffffff;
}

.chessent-index .chessent-footer-links ul,
.chessent-index .chessent-footer-contact ul {
  margin: 0;
}

.chessent-index .chessent-footer-links ul li,
.chessent-index .chessent-footer-contact ul li {
  margin-bottom: 18px;
}

.chessent-index .chessent-footer-links ul li:last-child,
.chessent-index .chessent-footer-contact ul li:last-child {
  margin-bottom: 0;
}

.chessent-index .chessent-footer-links a,
.chessent-index .chessent-footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.chessent-index .chessent-footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.chessent-index .chessent-footer-contact i {
  margin-top: 4px;
  color: #d7eef1;
}

.chessent-index .chessent-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 500;
}

.chessent-index .chessent-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.chessent-index .chessent-footer-bottom-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.chessent-index .chessent-footer-bottom-links a + a::before {
  position: absolute;
  left: -12px;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
  content: "";
}

@media (max-width: 1199px) {
  .chessent-index .hero8-section-area .row {
    --bs-gutter-x: 28px;
  }

  .chessent-index .vl-main-menu ul > li > a {
    padding: 0 10px;
    font-size: 15px;
  }

  .chessent-index .hero8-section-area .hero-header-area .widget-boxarea {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

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

@media (max-width: 991px) {
  .chessent-index .vl-transparent-header .row-bg1,
  .chessent-index .header-sticky .row-bg1 {
    padding: 10px 14px;
  }

  .chessent-index .hero8-section-area {
    min-height: auto;
    padding: 148px 0 56px;
  }

  .chessent-index .hero8-section-area .row {
    --bs-gutter-x: 24px;
    align-items: flex-start;
  }

  .chessent-index .hero8-section-area .hero-header-area,
  .chessent-index .about8-section-area .heading8,
  .chessent-index .about8-section-area .about8-imagrs-area {
    max-width: 100%;
    padding-left: 0;
  }

  .chessent-index .hero8-section-area .hero-header-area {
    padding-top: 54px;
  }

  .chessent-index .hero8-section-area .img1 {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 28px;
    border-radius: 26px 10px 26px 10px;
    overflow: hidden;
  }

  .chessent-index .hero8-section-area .img1 img {
    height: 480px;
    max-width: 100%;
  }

  .chessent-index .chessent-approach-copy h3 {
    font-size: 32px;
  }

  .chessent-index .hero8-section-area .hero-header-area .widget-boxarea {
    max-width: 100%;
  }

  .chessent-index .chessent-approach-row {
    row-gap: 24px;
  }

  .chessent-index .chessent-approach-row > .col-lg-5 {
    margin-top: 6px;
  }

  .chessent-index .chessent-approach-copy h3 {
    font-size: 30px;
  }

  .chessent-index .testimonial8-widgetarea {
    max-width: 100%;
    padding: 0;
  }

  .chessent-index .chessent-testimonial-shell {
    padding: 0 72px;
  }

  .chessent-index .chessent-testimonial-shell::before,
  .chessent-index .chessent-testimonial-shell::after {
    width: 68px;
    top: 28px;
    bottom: 28px;
  }

  .chessent-index .chessent-testimonial-shell::before {
    left: 78px;
  }

  .chessent-index .chessent-testimonial-shell::after {
    right: 78px;
  }

  .chessent-index .chessent-video-grid {
    grid-template-columns: 1fr;
  }

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

  .chessent-index .chessent-testimonial-card,
  .chessent-index .chessent-testimonial-card--featured {
    min-height: auto;
    padding: 34px 30px 30px;
  }

  .chessent-index .chessent-testimonial-card--featured {
    grid-column: span 2;
  }

  .chessent-index .chessent-footer-cta-shell {
    grid-template-columns: 1fr;
    border-radius: 0 34px 0 34px;
    padding: 34px 28px;
  }

  .chessent-index .vl-footer6-section-area {
    padding-top: 170px !important;
  }

  .chessent-index .chessent-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .chessent-index .chessent-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .chessent-index .vl-transparent-header {
    padding: 14px 0;
  }

  .chessent-index .vl-transparent-header .row-bg1,
  .chessent-index .header-sticky .row-bg1 {
    background: rgba(24, 37, 61, 0.96);
    box-shadow: 0 16px 32px rgba(9, 11, 15, 0.18);
    border-radius: 18px;
  }

  .chessent-index .hero8-section-area {
    padding: 136px 0 40px;
  }

  .chessent-index .hero8-section-area .hero-header-area h1 {
    font-size: 2.55rem;
  }

  .chessent-index .hero8-section-area .hero-header-area p,
  .chessent-index .about8-section-area .heading8 p,
  .chessent-index .chessent-section-copy,
  .chessent-index .chessent-testimonial-copy {
    font-size: 16px;
  }

  .chessent-index .chessent-approach-step {
    min-height: auto;
  }

  .chessent-index .chessent-approach-step-top {
    align-items: flex-start;
  }

  .chessent-index .chessent-approach-step-media {
    flex-basis: 92px;
    width: 92px;
    height: 72px;
  }

  .chessent-index .chessent-approach-row > .col-lg-7 > .row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .chessent-index .chessent-approach-step h3 {
    font-size: 24px;
    max-width: 100%;
  }

  .chessent-index .chessent-approach-step p {
    line-height: 1.72;
  }

  .chessent-index .chessent-approach-visual img {
    height: 220px;
  }

  .chessent-index .chessent-approach-floating-card {
    top: 108px;
    right: 12px;
    width: 92px;
    height: 92px;
    border-width: 3px;
  }

  .chessent-index .chessent-approach-copy {
    padding: 20px 6px 6px;
  }

  .chessent-index .chessent-approach-copy h3 {
    font-size: 28px;
    max-width: 100%;
  }

  .chessent-index .chessent-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .chessent-index .hero8-section-area .hero-header-area .widget-boxarea {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .chessent-index .widget-stat {
    min-height: auto;
  }

  .chessent-index .hero8-section-area .img1 img {
    height: 320px;
  }

  .chessent-index .about8-section-area .about8-imagrs-area .img1 {
    min-height: 280px;
    padding: 8px 6px 0;
  }

  .chessent-index .about8-section-area .about8-imagrs-area .img1 img {
    width: 118%;
    height: auto;
    max-height: none;
  }

  .chessent-index .about8-section-area .about8-imagrs-area .img2 {
    min-height: 300px;
  }

  .chessent-index .about8-section-area .about8-imagrs-area .img2 img {
    height: 300px;
  }

  .chessent-index .service8-scetion-area .service8-boxarea,
  .chessent-index .chessent-testimonial-card,
  .chessent-index .chessent-video-copy {
    padding: 28px 24px;
  }

  .chessent-index .service8-scetion-area .service8-boxarea {
    min-height: auto;
  }

  .chessent-index .chessent-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .chessent-index .chessent-testimonial-card--featured {
    grid-column: span 1;
  }

  .chessent-index .chessent-testimonial-card .pera,
  .chessent-index .chessent-testimonial-card--featured .pera {
    font-size: 1.18rem;
    line-height: 1.6;
  }

  .chessent-index .chessent-testimonial-card .author-boxarea {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .chessent-index .chessent-testimonial-card .author-boxarea .text a {
    font-size: 24px;
  }

  .chessent-index .chessent-testimonial-quote {
    right: 20px;
    bottom: 18px;
    font-size: 48px;
  }

  .chessent-index .chessent-footer-cta-shell {
    padding: 28px 22px;
  }

  .chessent-index .chessent-footer-cta-actions,
  .chessent-index .chessent-footer-bottom-links {
    flex-direction: column;
    align-items: stretch;
  }

  .chessent-index .chessent-footer-cta-side {
    border-radius: 0 24px 0 24px;
  }

  .chessent-index .vl-footer6-section-area {
    padding-top: 150px !important;
  }

  .chessent-index .chessent-footer-grid {
    grid-template-columns: 1fr;
  }

  .chessent-index .chessent-footer-hours ul li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .chessent-index .chessent-footer-bottom-links a + a::before {
    display: none;
  }
}

/* White + Teal Theme Refresh */
body.chessent-site {
  background:
    radial-gradient(circle at top right, rgba(26, 164, 181, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6fcfd 100%);
}

.chessent-topbar {
  background: var(--chessent-primary);
  color: rgba(255, 255, 255, 0.94);
}

.chessent-header {
  border-bottom-color: rgba(26, 164, 181, 0.1);
  background: rgba(255, 255, 255, 0.96);
}

.page-hero,
.contact-strip,
.chessent-footer {
  background:
    radial-gradient(circle at top left, rgba(26, 164, 181, 0.1), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #eefafb 100%);
  color: var(--chessent-ink);
}

.page-hero .section-heading,
.page-hero .section-copy,
.page-hero .breadcrumb,
.page-hero .breadcrumb a,
.contact-strip .section-heading,
.contact-strip .section-copy,
.contact-strip .section-copy p,
.chessent-footer,
.chessent-footer .footer-heading,
.chessent-footer .footer-list a,
.chessent-footer .footer-contact-list a,
.chessent-footer .footer-contact-list span,
.chessent-footer .footer-bottom {
  color: var(--chessent-ink);
}

.chessent-footer .footer-bottom {
  border-top-color: rgba(26, 164, 181, 0.14);
}

.btn-brand,
.chessent-site .btn-brand,
.chessent-site .btn-outline-brand:hover {
  background: linear-gradient(135deg, #1aa4b5, #158a98);
  color: #ffffff;
}

.btn-outline-brand {
  border-color: rgba(26, 164, 181, 0.24);
  color: var(--chessent-primary);
}

.section-kicker,
.team-role,
.testimonial-context,
.contact-list i,
.badge-soft,
.btn-link-brand {
  color: var(--chessent-primary);
}

.section-kicker::before,
.check-list li::before {
  background: linear-gradient(90deg, #1aa4b5, #158a98);
}

body.chessent-index {
  --chessent-logo-teal: #1aa4b5;
  --chessent-logo-teal-deep: #158a98;
  --chessent-logo-teal-soft: #e8f7f9;
  --chessent-logo-navy: #1aa4b5;
  --chessent-logo-navy-soft: #dff6f9;
  --chessent-hero-ink: #ffffff;
  --ztc-text-text-6: #5d7478;
  --ztc-text-text-17: #13373d;
  --ztc-text-text-19: #1aa4b5;
  --ztc-text-text-21: #5d7478;
  --ztc-text-text-23: #1aa4b5;
  --ztc-bg-bg-14: #1aa4b5;
  --ztc-bg-bg-15: #158a98;
  --ztc-bg-bg-16: #e8f7f9;
  --ztc-bg-bg-18: #1aa4b5;
  background:
    radial-gradient(circle at top right, rgba(26, 164, 181, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6fcfd 100%);
}

.chessent-index .vl-transparent-header .row-bg1,
.chessent-index .header-sticky .row-bg1 {
  border-color: rgba(26, 164, 181, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.96) 64%, rgba(232, 247, 249, 0.96) 64%, rgba(232, 247, 249, 0.96) 100%);
  box-shadow: 0 18px 34px rgba(26, 164, 181, 0.12);
}

.chessent-index .vl-main-menu ul > li > a,
.chessent-index .vl-transparent-header .vl-hero-btn .btn-area1 ul li a,
.chessent-index .hero8-section-area .hero-header-area h1,
.chessent-index .hero8-section-area .hero-header-area p,
.chessent-index .hero8-section-area .hero-header-area h5,
.chessent-index .hero8-section-area .hero-header-area .widget-boxarea h4,
.chessent-index .hero8-section-area .hero-header-area .widget-boxarea a,
.chessent-index .widget-stat p,
.chessent-index .chessent-hero-contact {
  color: var(--chessent-ink);
}

.chessent-index .vl-main-menu ul > li a.nav-link.active,
.chessent-index .vl-main-menu ul > li:hover > a {
  color: var(--chessent-primary);
}

.chessent-index .vl-transparent-header .vl-hero-btn .btn-area1 ul li a {
  background: rgba(26, 164, 181, 0.1);
}

.chessent-index .hero8-section-area {
  background:
    radial-gradient(circle at top left, rgba(26, 164, 181, 0.12), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f4fbfc 100%) !important;
}

.chessent-index .vl-btn8,
.chessent-index .chessent-community-btn,
.chessent-index .chessent-cta-accent-btn,
.chessent-index .chessent-footer-cta-side-actions a,
.chessent-index .chessent-footer-join-btn {
  background: linear-gradient(135deg, #1aa4b5 0%, #158a98 100%);
  box-shadow: 0 16px 30px rgba(26, 164, 181, 0.18);
}

.chessent-index .vl-btn8:hover {
  color: #ffffff;
}

.chessent-index .chessent-ghost-btn {
  border-color: rgba(26, 164, 181, 0.22);
  background: rgba(26, 164, 181, 0.06);
  color: var(--chessent-primary);
}

.chessent-index .hero8-section-area .btn-area1 .vl-btn8 {
  background: #1aa4b5;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(26, 164, 181, 0.18);
}

.chessent-index .hero8-section-area .btn-area1 .vl-btn8:hover {
  background: #158a98;
  color: #ffffff;
}

.chessent-index .hero8-section-area .btn-area1 .chessent-ghost-btn {
  border: 1px solid rgba(26, 164, 181, 0.24);
  background: #ffffff;
  color: #1aa4b5;
}

.chessent-index .hero8-section-area .btn-area1 .chessent-ghost-btn:hover {
  background: rgba(26, 164, 181, 0.08);
  color: #158a98;
}

.chessent-index .hero8-section-area .img1 {
  background: #e8f7f9;
}

.chessent-index .hero8-section-area::before {
  background:
    radial-gradient(circle at 38% 48%, rgba(26, 164, 181, 0.1), transparent 18%),
    radial-gradient(circle at 56% 60%, rgba(26, 164, 181, 0.08), transparent 22%);
}

.chessent-index .about8-section-area,
.chessent-index .service8-scetion-area,
.chessent-index .chessent-education-section,
.chessent-index .testimonial8-section-area,
.chessent-index .chessent-approach-section {
  background:
    radial-gradient(circle at top left, rgba(26, 164, 181, 0.06), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f7fcfd 100%);
}

.chessent-index .about8-section-area .experianc-box,
.chessent-index .chessent-initial-avatar,
.chessent-index .service8-scetion-area .service8-boxarea:hover {
  background: linear-gradient(135deg, #1aa4b5 0%, #158a98 100%);
}

.chessent-index .about8-section-area .heading8 h5,
.chessent-index .service8-scetion-area .heading8 h5,
.chessent-index .testimonial8-section-area .heading6 h5,
.chessent-index .chessent-approach-heading h5,
.chessent-index .chessent-approach-badge,
.chessent-index .chessent-video-copy h3,
.chessent-index .testimonial-context {
  color: var(--chessent-primary);
}

.chessent-index .about8-section-area .heading8 h2,
.chessent-index .service8-scetion-area .heading8 h2,
.chessent-index .testimonial8-section-area .heading6 h2,
.chessent-index .chessent-approach-heading h2,
.chessent-index .chessent-approach-copy h3,
.chessent-index .chessent-testimonial-card .author-boxarea .text a,
.chessent-index .service8-scetion-area .service8-boxarea .title {
  color: var(--chessent-ink);
}

.chessent-index .chessent-approach-step-accent {
  background: linear-gradient(135deg, #1aa4b5 0%, #158a98 100%);
}

.chessent-index .chessent-approach-badge {
  background: rgba(26, 164, 181, 0.12);
}

.chessent-index .chessent-approach-points li::before {
  background: #1aa4b5;
  box-shadow: 0 0 0 4px rgba(26, 164, 181, 0.12);
}

.chessent-index .chessent-testimonial-stars li,
.chessent-index .testimonial8-section-area .testimonial8-widgetarea .testimonial8-boxarea ul li {
  background: rgba(26, 164, 181, 0.1);
  color: #1aa4b5;
}

.chessent-index .chessent-footer-cta-shell,
.chessent-index .vl-footer6-section-area {
  background:
    radial-gradient(circle at top left, rgba(26, 164, 181, 0.08), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #eefafb 100%) !important;
  box-shadow: 0 24px 54px rgba(26, 164, 181, 0.12);
}

.chessent-index .chessent-footer-cta-main h2,
.chessent-index .chessent-footer-cta-main p,
.chessent-index .chessent-footer-cta-kicker,
.chessent-index .chessent-footer-cta-side h3,
.chessent-index .chessent-footer-cta-side p,
.chessent-index .chessent-footer-brand h3,
.chessent-index .chessent-footer-hours h3,
.chessent-index .chessent-footer-links h3,
.chessent-index .chessent-footer-contact h3,
.chessent-index .chessent-footer-brand p,
.chessent-index .chessent-footer-links a,
.chessent-index .chessent-footer-contact a,
.chessent-index .chessent-footer-bottom,
.chessent-index .chessent-footer-hours ul li,
.chessent-index .chessent-footer-bottom-links a {
  color: var(--chessent-ink);
}

.chessent-index .chessent-footer-hours ul,
.chessent-index .chessent-footer-cta-side {
  border-color: rgba(26, 164, 181, 0.14);
  background: rgba(255, 255, 255, 0.8);
}

.chessent-index .chessent-footer-brand .social-links li a {
  background: rgba(26, 164, 181, 0.1);
  color: var(--chessent-primary);
}

.chessent-index .chessent-footer-brand .social-links li a:hover {
  background: #1aa4b5;
  color: #ffffff;
}

.chessent-index .chessent-footer-bottom,
.chessent-index .chessent-footer-hours ul li,
.chessent-index .chessent-footer-bottom-links a + a::before {
  border-color: rgba(26, 164, 181, 0.14);
  background-color: transparent;
}

/* Final homepage teal lock */
.chessent-index .hero8-section-area .btn-area1 .vl-btn8,
.chessent-index .chessent-approach-copy .vl-btn8,
.chessent-index .about8-section-area .vl-btn8,
.chessent-index .chessent-video-cta .vl-btn8,
.chessent-index .chessent-cta-accent-btn,
.chessent-index .chessent-footer-cta-side-actions a,
.chessent-index .chessent-footer-join-btn {
  background: #1aa4b5 !important;
  background-image: none !important;
  color: #ffffff !important;
  box-shadow: 0 16px 30px rgba(26, 164, 181, 0.18) !important;
}

.chessent-index .hero8-section-area .btn-area1 .vl-btn8:hover,
.chessent-index .chessent-approach-copy .vl-btn8:hover,
.chessent-index .about8-section-area .vl-btn8:hover,
.chessent-index .chessent-video-cta .vl-btn8:hover,
.chessent-index .chessent-cta-accent-btn:hover,
.chessent-index .chessent-footer-cta-side-actions a:hover,
.chessent-index .chessent-footer-join-btn:hover {
  background: #158a98 !important;
  color: #ffffff !important;
}

.chessent-index .hero8-section-area .btn-area1 .chessent-ghost-btn {
  border-color: #1aa4b5 !important;
  background: #ffffff !important;
  color: #1aa4b5 !important;
}

.chessent-index .hero8-section-area .btn-area1 .chessent-ghost-btn:hover {
  background: rgba(26, 164, 181, 0.08) !important;
  color: #158a98 !important;
}

.chessent-index .service8-scetion-area .service8-boxarea:hover,
.chessent-index .service8-scetion-area .service8-boxarea:focus-within {
  background: linear-gradient(135deg, #1aa4b5 0%, #158a98 100%) !important;
  border-color: rgba(26, 164, 181, 0.24) !important;
}

.chessent-index .service8-scetion-area .service8-boxarea:hover .title,
.chessent-index .service8-scetion-area .service8-boxarea:hover p,
.chessent-index .service8-scetion-area .service8-boxarea:hover .readmore,
.chessent-index .service8-scetion-area .service8-boxarea:hover .readmore i,
.chessent-index .service8-scetion-area .service8-boxarea:focus-within .title,
.chessent-index .service8-scetion-area .service8-boxarea:focus-within p,
.chessent-index .service8-scetion-area .service8-boxarea:focus-within .readmore,
.chessent-index .service8-scetion-area .service8-boxarea:focus-within .readmore i {
  color: #ffffff !important;
}

.chessent-index .service8-scetion-area .service8-boxarea:hover .icons,
.chessent-index .service8-scetion-area .service8-boxarea:focus-within .icons {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
}

.chessent-index .vl-footer6-section-area {
  padding: 164px 0 38px !important;
  margin-top: -74px;
}

.chessent-index .chessent-footer-grid {
  grid-template-columns: 1.16fr 0.9fr 1fr 1.12fr;
  gap: 42px;
}

.chessent-index .chessent-footer-brand,
.chessent-index .chessent-footer-hours,
.chessent-index .chessent-footer-links,
.chessent-index .chessent-footer-contact {
  min-width: 0;
}

.chessent-index .chessent-footer-brand p {
  max-width: 280px;
  color: #3f5e66 !important;
}

.chessent-index .chessent-footer-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 274px;
  margin-top: 24px;
  padding: 16px 22px;
  text-align: left;
}

.chessent-index .chessent-footer-brand .social-links,
.chessent-index .chessent-footer-contact .social-links {
  gap: 12px;
  margin-top: 26px;
}

.chessent-index .chessent-footer-hours ul {
  padding: 14px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(26, 164, 181, 0.08);
}

.chessent-index .chessent-footer-hours ul li {
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
}

.chessent-index .chessent-footer-hours ul li span:first-child {
  flex: 0 0 118px;
  color: #214850 !important;
}

.chessent-index .chessent-footer-hours ul li span:last-child {
  flex: 1 1 auto;
  color: #1aa4b5 !important;
  text-align: right;
}

.chessent-index .chessent-footer-links ul,
.chessent-index .chessent-footer-contact ul {
  display: grid;
  gap: 16px;
}

.chessent-index .chessent-footer-links ul li,
.chessent-index .chessent-footer-contact ul li {
  margin-bottom: 0;
}

.chessent-index .chessent-footer-links a {
  color: #214850 !important;
}

.chessent-index .chessent-footer-contact ul li {
  gap: 14px;
}

.chessent-index .chessent-footer-contact i {
  color: #1aa4b5 !important;
}

.chessent-index .chessent-footer-contact a {
  color: #214850 !important;
}

.chessent-index .chessent-footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  color: #5a7680 !important;
}

.chessent-index .chessent-footer-bottom-links a {
  color: #214850 !important;
}

@media (max-width: 991px) {
  .chessent-index .chessent-footer-hours ul li span:last-child {
    text-align: left;
  }
}

.chessent-index .vl-transparent-header .row-bg1,
.chessent-index .header-sticky .row-bg1 {
  border: 1px solid rgba(26, 164, 181, 0.14) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 253, 0.98)) !important;
  box-shadow: 0 18px 36px rgba(26, 164, 181, 0.1) !important;
  backdrop-filter: blur(10px);
}

.chessent-index .vl-main-menu ul > li > a {
  color: #214850 !important;
}

.chessent-index .vl-main-menu ul > li a.nav-link.active,
.chessent-index .vl-main-menu ul > li:hover > a {
  color: #1aa4b5 !important;
}

.chessent-index .header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  animation: 0.7s ease-in-out 0s normal none 1 running vlfadeInDown;
}

.chessent-index .header-sticky .row-bg1 {
  padding: 12px 22px !important;
}

.chessent-index .vl-transparent-header .vl-hero-btn .btn-area1 ul li a {
  background: rgba(26, 164, 181, 0.1) !important;
  color: #1aa4b5 !important;
  box-shadow: none !important;
}

.chessent-index .vl-transparent-header .vl-hero-btn .btn-area1 ul li a:hover {
  background: #1aa4b5 !important;
  color: #ffffff !important;
}

.chessent-index .vl-header-action-item .vl-offcanvas-toggle {
  background: rgba(26, 164, 181, 0.1) !important;
  color: #1aa4b5 !important;
  border: 1px solid rgba(26, 164, 181, 0.14) !important;
}

.chessent-index .chessent-approach-step-number,
.chessent-index .chessent-approach-badge,
.chessent-index .chessent-approach-points li::before {
  color: #1aa4b5 !important;
}

.chessent-index .chessent-approach-step-accent .chessent-approach-step-number {
  color: #1aa4b5 !important;
  background: #ffffff !important;
}

.chessent-index .chessent-approach-points li::before {
  background: #1aa4b5 !important;
  box-shadow: 0 0 0 4px rgba(26, 164, 181, 0.12) !important;
}

/* Homepage Premium Teal Refinement */
body.homepage8-body.chessent-index {
  background:
    radial-gradient(circle at top left, rgba(26, 164, 181, 0.1), transparent 22%),
    linear-gradient(180deg, #f5fdfe 0%, #ecf9fb 100%);
}

.chessent-index .hero8-section-area {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.18), transparent 16%),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.14), transparent 20%),
    linear-gradient(135deg, #1aa4b5 0%, #1695a4 55%, #127a87 100%) !important;
}

.chessent-index .hero8-section-area::before {
  inset: 0 !important;
  background:
    linear-gradient(90deg, rgba(12, 59, 66, 0.18) 0%, rgba(12, 59, 66, 0.08) 42%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(circle at 24% 58%, rgba(255, 255, 255, 0.1), transparent 22%),
    radial-gradient(circle at 76% 50%, rgba(255, 255, 255, 0.08), transparent 24%) !important;
}

.chessent-index .hero8-section-area .hero-header-area h1,
.chessent-index .hero8-section-area .hero-header-area p,
.chessent-index .hero8-section-area .hero-header-area h5,
.chessent-index .hero8-section-area .hero-header-area .widget-boxarea h4,
.chessent-index .hero8-section-area .hero-header-area .widget-boxarea a,
.chessent-index .widget-stat p,
.chessent-index .chessent-hero-contact {
  color: #ffffff !important;
}

.chessent-index .hero8-section-area .hero-header-area h5 {
  letter-spacing: 0.04em;
}

.chessent-index .hero8-section-area .hero-header-area p {
  color: rgba(255, 255, 255, 0.84) !important;
}

.chessent-index .hero8-section-area .hero-header-area .widget-boxarea {
  gap: 18px;
}

.chessent-index .widget-stat {
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(9, 58, 64, 0.12);
  backdrop-filter: blur(14px);
}

.chessent-index .widget-stat p {
  color: rgba(255, 255, 255, 0.76) !important;
}

.chessent-index .chessent-hero-contact {
  gap: 14px;
}

.chessent-index .chessent-hero-contact span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.chessent-index .chessent-hero-contact i {
  color: #d8f8fb !important;
}

.chessent-index .hero8-section-area .btn-area1 .vl-btn8 {
  background: #ffffff !important;
  color: #0f7784 !important;
  box-shadow: 0 20px 40px rgba(10, 80, 89, 0.18) !important;
}

.chessent-index .hero8-section-area .btn-area1 .vl-btn8:hover {
  background: #effcfd !important;
  color: #0d6974 !important;
}

.chessent-index .hero8-section-area .btn-area1 .chessent-ghost-btn {
  border-color: rgba(255, 255, 255, 0.36) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

.chessent-index .hero8-section-area .btn-area1 .chessent-ghost-btn:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
}

.chessent-index .hero8-section-area .img1 {
  padding: 26px 0 26px 36px;
}

.chessent-index .hero8-section-area .img1 img {
  border: 14px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 56px rgba(8, 66, 74, 0.22);
}

.chessent-index .service8-scetion-area {
  background:
    radial-gradient(circle at top left, rgba(26, 164, 181, 0.12), transparent 18%),
    linear-gradient(180deg, #f8fdfe 0%, #edf9fb 100%) !important;
}

.chessent-index .chessent-education-section {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(135deg, #1aa4b5 0%, #148c9a 58%, #11727e 100%) !important;
}

.chessent-index .chessent-education-section .heading8 h5,
.chessent-index .chessent-education-section .heading8 h2,
.chessent-index .chessent-education-section .chessent-section-copy {
  color: #ffffff !important;
}

.chessent-index .chessent-education-section .chessent-section-copy {
  opacity: 0.86;
}

.chessent-index .chessent-video-card {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 48px rgba(8, 61, 68, 0.16);
}

.chessent-index .chessent-video-cta .vl-btn8 {
  background: linear-gradient(135deg, #1aa4b5 0%, #148b99 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 18px 36px rgba(8, 95, 107, 0.22) !important;
}

.chessent-index .chessent-video-cta .vl-btn8:hover {
  background: linear-gradient(135deg, #148b99 0%, #117885 100%) !important;
  color: #ffffff !important;
}

.chessent-index .chessent-approach-section {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #18a0b1 0%, #12828f 100%) !important;
}

.chessent-index .chessent-approach-heading h5,
.chessent-index .chessent-approach-heading h2,
.chessent-index .chessent-approach-heading .chessent-section-copy {
  color: #ffffff !important;
}

.chessent-index .chessent-approach-heading .chessent-section-copy {
  opacity: 0.88;
}

.chessent-index .chessent-approach-step,
.chessent-index .chessent-approach-spotlight {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 48px rgba(7, 64, 71, 0.15);
}

.chessent-index .chessent-approach-step-accent {
  background: linear-gradient(135deg, #106f7b 0%, #0c5d68 100%) !important;
}

.chessent-index .chessent-approach-step-accent h3,
.chessent-index .chessent-approach-step-accent p {
  color: #ffffff !important;
}

/* Hero Real Final Override */
@media (min-width: 992px) {
  .chessent-index .hero8-section-area {
    padding: 146px 0 44px !important;
    overflow: hidden !important;
  }

  .chessent-index .hero8-section-area .row.chessent-hero-layout {
    align-items: flex-start !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-copy-col,
  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    display: flex !important;
    align-items: flex-start !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    justify-content: flex-end !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    width: min(100%, 620px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    margin-top: -72px !important;
    padding-top: 0 !important;
    transform: none !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-frame {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-frame::before {
    content: none !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell img {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: 540px !important;
    object-fit: contain !important;
    object-position: top center !important;
    display: block !important;
    margin: 0 0 0 auto !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    align-self: stretch !important;
  }
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area {
    overflow: hidden !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual,
  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    align-items: center !important;
    justify-content: center !important;
    margin-top: 0 !important;
    transform: none !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    width: min(100%, 360px) !important;
  }
}

/* Inner Pages Final Design System */
body.chessent-inner-page {
  background:
    radial-gradient(circle at top right, rgba(26, 164, 181, 0.08), transparent 20%),
    radial-gradient(circle at 10% 18%, rgba(26, 164, 181, 0.06), transparent 24%),
    linear-gradient(180deg, #f9fdff 0%, #eff8fb 54%, #f9fdff 100%);
}

.chessent-inner-page main {
  overflow: hidden;
}

.chessent-inner-page .page-hero {
  position: relative;
  padding: 150px 0 82px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, #118c9d 0%, #1aa4b5 52%, #1c8f9e 100%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.18);
}

.chessent-inner-page .page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 66%);
  content: "";
}

.chessent-inner-page .page-hero .container,
.chessent-inner-page .section-space .container,
.chessent-inner-page .section-space-sm .container {
  position: relative;
  z-index: 1;
}

.chessent-inner-page .page-hero .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.chessent-inner-page .page-hero .section-heading {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 4.4vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.chessent-inner-page .page-hero .breadcrumb {
  margin-top: 24px;
  opacity: 0.9;
}

.chessent-inner-page .page-hero .breadcrumb a:hover {
  opacity: 1;
}

.chessent-inner-page .section-space {
  padding: 108px 0;
}

.chessent-inner-page .section-space-sm {
  padding: 88px 0;
}

.chessent-inner-page .section-kicker {
  color: #1aa4b5;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.chessent-inner-page .section-heading {
  color: #163844;
  letter-spacing: -0.04em;
}

.chessent-inner-page .section-copy,
.chessent-inner-page .section-copy p {
  color: #597482;
  line-height: 1.86;
}

.chessent-inner-page .split-panel {
  gap: 42px;
  align-items: start;
}

.chessent-inner-page .split-panel > div,
.chessent-inner-page .contact-layout > div {
  min-width: 0;
}

.chessent-inner-page .media-shell,
.chessent-inner-page .surface-card,
.chessent-inner-page .detail-card,
.chessent-inner-page .testimonial-card,
.chessent-inner-page .faq-card,
.chessent-inner-page .contact-card,
.chessent-inner-page .gallery-card,
.chessent-inner-page .support-card,
.chessent-inner-page .service-card,
.chessent-inner-page .team-card,
.chessent-inner-page .video-card {
  border: 1px solid rgba(26, 164, 181, 0.12);
  box-shadow: 0 22px 48px rgba(10, 88, 98, 0.08);
}

.chessent-inner-page .surface-card,
.chessent-inner-page .detail-card,
.chessent-inner-page .testimonial-card,
.chessent-inner-page .faq-card,
.chessent-inner-page .contact-card,
.chessent-inner-page .support-card,
.chessent-inner-page .service-card,
.chessent-inner-page .team-card,
.chessent-inner-page .video-card,
.chessent-inner-page .gallery-card {
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.chessent-inner-page .surface-card:hover,
.chessent-inner-page .detail-card:hover,
.chessent-inner-page .testimonial-card:hover,
.chessent-inner-page .contact-card:hover,
.chessent-inner-page .support-card:hover,
.chessent-inner-page .service-card:hover,
.chessent-inner-page .team-card:hover,
.chessent-inner-page .video-card:hover,
.chessent-inner-page .gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 164, 181, 0.24);
  box-shadow: 0 28px 54px rgba(10, 88, 98, 0.14);
}

.chessent-inner-page .surface-card,
.chessent-inner-page .detail-card,
.chessent-inner-page .contact-card,
.chessent-inner-page .support-card,
.chessent-inner-page .testimonial-card,
.chessent-inner-page .video-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.96);
}

.chessent-inner-page .icon-chip {
  background: linear-gradient(135deg, rgba(26, 164, 181, 0.12), rgba(26, 164, 181, 0.22));
  color: #148a99;
}

.chessent-inner-page .check-list {
  gap: 16px;
}

.chessent-inner-page .check-list li {
  color: #264754;
}

.chessent-inner-page .check-list li::before {
  background: linear-gradient(135deg, #1aa4b5, #178d9c);
}

.chessent-inner-page .mosaic-grid,
.chessent-inner-page .value-stack,
.chessent-inner-page .service-stack,
.chessent-inner-page .testimonial-stack,
.chessent-inner-page .support-grid,
.chessent-inner-page .gallery-grid,
.chessent-inner-page .team-grid,
.chessent-inner-page .video-links {
  gap: 28px;
}

.chessent-inner-page .mosaic-grid .media-shell,
.chessent-inner-page .media-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.96));
}

.chessent-inner-page .media-shell img {
  min-height: 100%;
}

.chessent-inner-page .value-stack .surface-card,
.chessent-inner-page .support-card,
.chessent-inner-page .testimonial-card {
  position: relative;
  overflow: hidden;
}

.chessent-inner-page .value-stack .surface-card::before,
.chessent-inner-page .support-card::before,
.chessent-inner-page .testimonial-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1aa4b5, rgba(26, 164, 181, 0));
  content: "";
}

.chessent-inner-page .service-card {
  background: rgba(255, 255, 255, 0.98);
}

.chessent-inner-page .service-card img {
  height: 250px;
}

.chessent-inner-page .service-card-body h3,
.chessent-inner-page .team-card-body h3,
.chessent-inner-page .contact-card h3,
.chessent-inner-page .surface-card h3,
.chessent-inner-page .support-card h3,
.chessent-inner-page .testimonial-author {
  color: #183743;
}

.chessent-inner-page .service-card-body p,
.chessent-inner-page .team-meta,
.chessent-inner-page .contact-card p,
.chessent-inner-page .surface-card p,
.chessent-inner-page .support-card p,
.chessent-inner-page .testimonial-card p,
.chessent-inner-page .accordion-body,
.chessent-inner-page .contact-list a,
.chessent-inner-page .contact-list span {
  color: #5f7886;
}

.chessent-inner-page .service-tag-list span,
.chessent-inner-page .badge-soft {
  background: rgba(26, 164, 181, 0.09);
  color: #138896;
}

.chessent-inner-page .team-card {
  background: rgba(255, 255, 255, 0.98);
}

.chessent-inner-page .team-card img {
  background:
    radial-gradient(circle at top, rgba(26, 164, 181, 0.14), transparent 46%),
    linear-gradient(180deg, #fbfeff 0%, #eef9fb 100%);
}

.chessent-inner-page .team-support-card {
  overflow: hidden;
  padding: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
}

.chessent-inner-page .team-support-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background:
    radial-gradient(circle at top, rgba(26, 164, 181, 0.14), transparent 46%),
    linear-gradient(180deg, #fbfeff 0%, #eef9fb 100%);
}

.chessent-inner-page .team-support-card p {
  margin-top: 12px;
}

.chessent-inner-page .support-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.chessent-inner-page .team-support-card img {
  height: 260px;
}

.chessent-inner-page .team-support-card .team-card-body {
  padding: 22px;
}

.chessent-inner-page .team-support-card .team-card-body h3 {
  font-size: 1.1rem;
}

.chessent-inner-page .team-support-card .team-role {
  font-size: 0.78rem;
  line-height: 1.45;
}

.chessent-inner-page .team-support-card p {
  font-size: 0.98rem;
  line-height: 1.72;
}

.chessent-inner-page .team-role,
.chessent-inner-page .testimonial-context {
  color: #1aa4b5;
}

.chessent-inner-page .contact-layout {
  gap: 32px;
  align-items: start;
}

.chessent-inner-page .contact-list {
  gap: 18px;
}

.chessent-inner-page .contact-list i {
  color: #1aa4b5;
}

.chessent-inner-page .inquiry-form .form-control,
.chessent-inner-page .inquiry-form .form-select,
.chessent-inner-page .inquiry-form .form-textarea {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(26, 164, 181, 0.16);
}

.chessent-inner-page .inquiry-form .form-control:focus,
.chessent-inner-page .inquiry-form .form-select:focus,
.chessent-inner-page .inquiry-form .form-textarea:focus {
  border-color: rgba(26, 164, 181, 0.34);
  box-shadow: 0 0 0 4px rgba(26, 164, 181, 0.1);
}

.chessent-inner-page .map-shell {
  border: 1px solid rgba(26, 164, 181, 0.12);
}

.chessent-inner-page .contact-map-card .section-copy {
  max-width: 56ch;
}

.chessent-inner-page .contact-map-shell {
  min-height: 460px;
  border-radius: 28px;
  border: 1px solid rgba(26, 164, 181, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(236, 249, 252, 0.94));
  box-shadow: 0 26px 50px rgba(12, 86, 103, 0.12);
}

.chessent-inner-page .contact-map-shell iframe {
  min-height: 460px;
  filter: saturate(1.03) contrast(1.01);
}

.chessent-inner-page .contact-map-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.chessent-inner-page .contact-map-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(26, 164, 181, 0.08);
  color: #245667;
  font-weight: 600;
  line-height: 1.4;
}

.chessent-inner-page .contact-map-points i {
  color: #1aa4b5;
}

.chessent-inner-page .faq-card {
  padding: 22px;
}

.chessent-inner-page .faq-summary-card {
  height: auto !important;
  align-self: start;
}

.chessent-inner-page .accordion-item {
  border-color: rgba(26, 164, 181, 0.12);
}

.chessent-inner-page .accordion-button {
  color: #193943;
}

.chessent-inner-page .accordion-button:not(.collapsed) {
  color: #157f8d;
  background: rgba(26, 164, 181, 0.08);
}

.chessent-inner-page .accordion-button::after {
  filter: saturate(0.9);
}

.chessent-inner-page .contact-strip {
  padding: 40px;
  border: 1px solid rgba(26, 164, 181, 0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, #138896 0%, #1aa4b5 58%, #168897 100%);
  box-shadow: 0 28px 56px rgba(10, 88, 98, 0.18);
}

.chessent-inner-page .contact-strip .check-list li,
.chessent-inner-page .contact-strip .section-heading,
.chessent-inner-page .contact-strip .section-copy,
.chessent-inner-page .contact-strip .section-copy p {
  color: #ffffff;
}

.chessent-inner-page .contact-strip .check-list li::before {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.chessent-inner-page .contact-value-section {
  padding-top: 24px;
}

.chessent-inner-page .chessent-why-strip {
  padding: 46px 42px;
  border-radius: 34px;
}

.chessent-inner-page .chessent-why-strip .section-heading {
  max-width: 760px;
}

.chessent-inner-page .chessent-why-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.chessent-inner-page .chessent-why-point {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.chessent-inner-page .chessent-why-point-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.chessent-inner-page .chessent-why-point h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.chessent-inner-page .chessent-why-point p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

.chessent-inner-page .chessent-why-panel {
  height: 100%;
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.chessent-inner-page .chessent-why-panel h3 {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.chessent-inner-page .chessent-why-panel .check-list {
  gap: 18px;
}

.chessent-inner-page .chessent-why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.chessent-inner-page .chessent-why-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.chessent-inner-page .hero-actions,
.chessent-inner-page .chessent-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.chessent-inner-page .btn-brand,
.chessent-inner-page .btn-outline-brand {
  min-width: 226px;
  justify-content: center;
  border-radius: 18px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: none;
}

.chessent-inner-page .btn-brand,
.chessent-inner-page .btn-brand:hover {
  background: #1aa4b5 !important;
  color: #ffffff !important;
}

.chessent-inner-page .btn-brand::after,
.chessent-inner-page .btn-brand:hover::after {
  background: #1aa4b5 !important;
}

.chessent-inner-page .btn-outline-brand,
.chessent-inner-page .btn-outline-brand:hover {
  border-color: rgba(26, 164, 181, 0.3);
  background: rgba(255, 255, 255, 0.82) !important;
  color: #1594a4 !important;
}

.chessent-inner-page .btn-outline-brand::after,
.chessent-inner-page .btn-outline-brand:hover::after {
  background: rgba(255, 255, 255, 0.82) !important;
}

.chessent-inner-page .vl-footer6-section-area {
  margin-top: 0;
}

@media (min-width: 992px) {
  .chessent-inner-page .about-page-story {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 44px;
    align-items: start;
  }

  .chessent-inner-page .about-page-story .about-page-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 28px;
  }
}

@media (max-width: 1199px) {
  .chessent-inner-page .page-hero .section-heading {
    max-width: 820px;
  }

  .chessent-inner-page .service-card img {
    height: 220px;
  }

  .chessent-inner-page .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .chessent-inner-page .page-hero {
    padding: 132px 0 72px;
  }

  .chessent-inner-page .section-space {
    padding: 84px 0;
  }

  .chessent-inner-page .section-space-sm {
    padding: 72px 0;
  }

  .chessent-inner-page .split-panel,
  .chessent-inner-page .contact-layout {
    grid-template-columns: 1fr;
  }

  .chessent-inner-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chessent-inner-page .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chessent-inner-page .hero-actions,
  .chessent-inner-page .chessent-about-actions {
    justify-content: flex-start;
  }

  .chessent-inner-page .chessent-why-strip {
    padding: 32px 24px;
  }

  .chessent-inner-page .chessent-why-point {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .chessent-inner-page .chessent-why-point-number {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 767px) {
  .chessent-inner-page .page-hero .section-heading {
    font-size: clamp(2.2rem, 10vw, 3.15rem);
  }

  .chessent-inner-page .surface-card,
  .chessent-inner-page .detail-card,
  .chessent-inner-page .contact-card,
  .chessent-inner-page .support-card,
  .chessent-inner-page .testimonial-card,
  .chessent-inner-page .video-card,
  .chessent-inner-page .contact-strip {
    padding: 24px;
  }

  .chessent-inner-page .btn-brand,
  .chessent-inner-page .btn-outline-brand {
    width: 100%;
    min-width: 0;
  }

  .chessent-inner-page .support-grid {
    grid-template-columns: 1fr;
  }
}

/* Universal CTA + Footer Final */
.homepage8-body .chessent-footer-cta-section {
  position: relative;
  z-index: 2;
  padding: 0 0 138px;
  margin: 0;
  overflow: visible;
}

.homepage8-body .chessent-footer-cta-section .container {
  position: relative;
  overflow: visible;
}

.homepage8-body .chessent-footer-cta-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.95fr);
  gap: 42px;
  align-items: center;
  padding: 58px 46px 48px;
  border-radius: 0 66px 0 66px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(135deg, #1aa4b5 0%, #1695a4 58%, #117883 100%);
  box-shadow: 0 34px 68px rgba(9, 84, 95, 0.18);
  transform: translateY(120px);
}

.homepage8-body .chessent-footer-cta-main {
  max-width: 720px;
}

.homepage8-body .chessent-footer-cta-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.homepage8-body .chessent-footer-cta-main h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.35rem, 3.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.homepage8-body .chessent-footer-cta-main p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.82;
}

.homepage8-body .chessent-footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.homepage8-body .chessent-cta-light-btn,
.homepage8-body .chessent-cta-accent-btn,
.homepage8-body .chessent-footer-cta-side-actions a,
.homepage8-body .chessent-footer-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: #ffffff !important;
  color: #0f7683 !important;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 18px 32px rgba(8, 72, 80, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.homepage8-body .chessent-cta-light-btn:hover,
.homepage8-body .chessent-cta-accent-btn:hover,
.homepage8-body .chessent-footer-cta-side-actions a:hover,
.homepage8-body .chessent-footer-join-btn:hover {
  transform: translateY(-3px);
  background: #f1fdff !important;
  color: #0a6772 !important;
  box-shadow: 0 22px 36px rgba(8, 72, 80, 0.18);
}

.homepage8-body .chessent-footer-cta-side {
  padding: 32px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0 38px 0 38px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.homepage8-body .chessent-footer-cta-side h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.homepage8-body .chessent-footer-cta-side p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.82;
}

.homepage8-body .chessent-footer-cta-side-actions {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.homepage8-body .vl-footer6-section-area {
  position: relative;
  margin-top: -38px !important;
  padding: 136px 0 36px !important;
  border-radius: 0 0 28px 28px;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(180deg, #188d9c 0%, #137482 52%, #10616d 100%) !important;
  box-shadow: none !important;
}

.homepage8-body .vl-footer6-section-area .container {
  max-width: 1320px !important;
}

.homepage8-body .chessent-footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) minmax(160px, 0.72fr) minmax(240px, 0.92fr) minmax(280px, 1fr);
  gap: 54px;
  align-items: start;
}

.homepage8-body .chessent-footer-brand,
.homepage8-body .chessent-footer-links,
.homepage8-body .chessent-footer-contact {
  min-width: 0;
}

.homepage8-body .chessent-footer-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 32px rgba(6, 42, 48, 0.16);
}

.homepage8-body .chessent-footer-logo-badge img {
  height: 58px;
  width: auto;
}

.homepage8-body .chessent-footer-brand h3,
.homepage8-body .chessent-footer-links h3,
.homepage8-body .chessent-footer-contact h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.homepage8-body .chessent-footer-brand p,
.homepage8-body .chessent-footer-links a,
.homepage8-body .chessent-footer-contact a,
.homepage8-body .chessent-footer-bottom,
.homepage8-body .chessent-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.96) !important;
}

.homepage8-body .chessent-footer-brand p {
  max-width: 290px;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.85;
}

.homepage8-body .chessent-footer-join-btn {
  width: min(100%, 270px);
  margin-top: 28px;
  justify-content: flex-start;
}

.homepage8-body .chessent-footer-links ul,
.homepage8-body .chessent-footer-contact ul {
  margin: 0;
  padding: 0;
}

.homepage8-body .chessent-footer-links ul li,
.homepage8-body .chessent-footer-contact ul li {
  margin-bottom: 18px;
}

.homepage8-body .chessent-footer-links ul li:last-child,
.homepage8-body .chessent-footer-contact ul li:last-child {
  margin-bottom: 0;
}

.homepage8-body .chessent-footer-links a {
  display: inline-block;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
}

.homepage8-body .chessent-footer-links a:hover,
.homepage8-body .chessent-footer-contact a:hover,
.homepage8-body .chessent-footer-bottom-links a:hover {
  color: #ffffff !important;
  opacity: 1;
}

.homepage8-body .chessent-footer-contact ul li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.homepage8-body .chessent-footer-contact i {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1.05rem;
}

.homepage8-body .chessent-footer-contact a {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.65;
  text-decoration: none;
}

.homepage8-body .chessent-footer-contact .chessent-address-landmark {
  display: block;
  margin-top: 2px;
  font-size: 0.96rem;
  font-weight: 500;
  opacity: 0.88;
}

.homepage8-body .chessent-footer-contact .social-links {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.homepage8-body .chessent-footer-contact .social-links li {
  margin: 0;
}

.homepage8-body .chessent-footer-brand .social-links li a,
.homepage8-body .chessent-footer-contact .social-links li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  text-decoration: none;
}

.homepage8-body .chessent-footer-brand .social-links li a:hover,
.homepage8-body .chessent-footer-contact .social-links li a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.homepage8-body .chessent-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.98rem;
  line-height: 1.7;
}

.homepage8-body .chessent-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.homepage8-body .chessent-footer-bottom-links a {
  position: relative;
  text-decoration: none;
}

.homepage8-body .chessent-footer-bottom-links a + a::before {
  position: absolute;
  left: -14px;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.34);
  transform: translateY(-50%);
  content: "";
}

@media (max-width: 1199px) {
  .homepage8-body .chessent-footer-cta-shell {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
    gap: 30px;
    padding: 48px 34px 42px;
  }

  .homepage8-body .chessent-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 34px;
  }
}

@media (max-width: 991px) {
  .homepage8-body .chessent-footer-cta-section {
    padding-bottom: 78px;
  }

  .homepage8-body .chessent-footer-cta-shell {
    grid-template-columns: 1fr;
    transform: translateY(64px);
  }

  .homepage8-body .chessent-footer-cta-main,
  .homepage8-body .chessent-footer-cta-side {
    max-width: 100%;
  }

  .homepage8-body .vl-footer6-section-area {
    padding-top: 132px !important;
  }
}

@media (max-width: 767px) {
  .homepage8-body .chessent-footer-cta-section {
    padding-bottom: 54px;
  }

  .homepage8-body .chessent-footer-cta-shell {
    padding: 36px 22px 30px;
    border-radius: 0 40px 0 40px;
    transform: translateY(42px);
  }

  .homepage8-body .chessent-footer-cta-main h2 {
    font-size: clamp(2rem, 8.6vw, 2.8rem);
  }

  .homepage8-body .chessent-footer-cta-actions {
    flex-direction: column;
  }

  .homepage8-body .chessent-cta-light-btn,
  .homepage8-body .chessent-cta-accent-btn,
  .homepage8-body .chessent-footer-cta-side-actions a,
  .homepage8-body .chessent-footer-join-btn {
    width: 100%;
  }

  .homepage8-body .vl-footer6-section-area {
    margin-top: -24px !important;
    padding: 110px 0 28px !important;
  }

  .homepage8-body .chessent-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .homepage8-body .chessent-footer-brand p {
    max-width: none;
  }

  .homepage8-body .chessent-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .homepage8-body .chessent-footer-bottom-links {
    gap: 18px;
  }

  .homepage8-body .chessent-footer-bottom-links a + a::before {
    content: none;
  }
}

/* About Actions True Last Override */
.chessent-index .about8-section-area .chessent-about-actions {
  display: flex !important;
  justify-content: flex-end !important;
  margin-left: auto !important;
}

@media (max-width: 991px) {
  .chessent-index .about8-section-area .chessent-about-actions {
    justify-content: flex-start !important;
    margin-left: 0 !important;
  }
}

/* Hero Height Reset Final */
@media (min-width: 992px) {
  .chessent-index .hero8-section-area {
    min-height: auto !important;
    padding-bottom: 0 !important;
  }

  .chessent-index .hero8-section-area .hero-header-area,
  .chessent-index .hero8-section-area .chessent-hero-visual,
  .chessent-index .hero8-section-area .chessent-hero-image-shell,
  .chessent-index .hero8-section-area .chessent-hero-image-frame {
    min-height: 0 !important;
    height: auto !important;
  }

  .chessent-index .hero8-section-area .row.chessent-hero-layout,
  .chessent-index .hero8-section-area .chessent-hero-copy-col,
  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    align-items: flex-start !important;
  }
}

/* About CTA Alignment Final */
.chessent-index .chessent-about-actions {
  justify-content: flex-end !important;
}

@media (max-width: 991px) {
  .chessent-index .chessent-about-actions {
    justify-content: flex-start !important;
  }
}

/* Hero Absolute Last Override */
@media (min-width: 992px) {
  .chessent-index .hero8-section-area {
    padding: 146px 0 18px !important;
    overflow: hidden !important;
  }

  .chessent-index .hero8-section-area .row.chessent-hero-layout {
    align-items: flex-start !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-copy-col,
  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    display: flex !important;
    align-items: flex-start !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    justify-content: flex-end !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    padding-top: 0 !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    width: min(100%, 620px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    margin-top: 24px !important;
    padding-top: 0 !important;
    transform: none !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-frame {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-frame::before {
    content: none !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell img {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: 540px !important;
    object-fit: contain !important;
    object-position: top center !important;
    display: block !important;
    margin: 0 0 0 auto !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    align-self: stretch !important;
  }
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area {
    overflow: hidden !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual,
  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    align-items: center !important;
    justify-content: center !important;
    margin-top: 0 !important;
    transform: none !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    width: min(100%, 360px) !important;
  }
}

/* Absolute Final Hero Alignment */
.chessent-index .hero8-section-area {
  overflow: hidden !important;
}

@media (min-width: 992px) {
  .chessent-index .hero8-section-area {
    padding: 146px 0 118px !important;
  }

  .chessent-index .hero8-section-area .row.chessent-hero-layout {
    align-items: flex-start !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-copy-col,
  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    display: flex !important;
    align-items: flex-start !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    justify-content: flex-end !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    padding-top: 10px !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    width: min(100%, 610px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 12px !important;
    margin-top: -130px !important;
    transform: none !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-frame {
    width: 100% !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell img {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: 540px !important;
    object-fit: contain !important;
    object-position: bottom center !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    align-self: stretch !important;
  }
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area {
    padding: 132px 0 72px !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual,
  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    justify-content: center !important;
    align-items: center !important;
    margin-top: 0 !important;
    transform: none !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    width: min(100%, 360px) !important;
  }
}

/* Absolute Hero Final Override */
.chessent-index .hero8-section-area {
  padding: 146px 0 110px !important;
}

.chessent-index .hero8-section-area .row.chessent-hero-layout {
  align-items: flex-start !important;
}

.chessent-index .hero8-section-area .chessent-hero-copy-col,
.chessent-index .hero8-section-area .chessent-hero-visual-col {
  align-items: flex-start !important;
}

.chessent-index .hero8-section-area .chessent-hero-visual {
  justify-content: flex-start !important;
  align-items: flex-start !important;
  padding-top: 8px !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-shell {
  justify-content: flex-start !important;
  align-items: flex-end !important;
  gap: 8px !important;
  margin-top: -150px !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-frame,
.chessent-index .hero8-section-area .chessent-hero-image-shell img,
.chessent-index .hero8-section-area .chessent-hero-trust-card {
  width: min(100%, 590px) !important;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card {
  margin: 0 !important;
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area {
    padding: 132px 0 72px !important;
  }

  .chessent-index .hero8-section-area .row.chessent-hero-layout,
  .chessent-index .hero8-section-area .chessent-hero-copy-col,
  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    align-items: center !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual {
    justify-content: center !important;
    align-items: center !important;
    padding-top: 0 !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    margin-top: 0 !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-frame,
  .chessent-index .hero8-section-area .chessent-hero-image-shell img,
  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    width: min(100%, 360px) !important;
  }
}

/* Hero Final Fix */
.chessent-index .hero8-section-area {
  padding: 146px 0 110px !important;
}

.chessent-index .hero8-section-area .row.chessent-hero-layout {
  align-items: flex-start !important;
}

.chessent-index .hero8-section-area .chessent-hero-copy-col,
.chessent-index .hero8-section-area .chessent-hero-visual-col {
  align-items: flex-start !important;
}

.chessent-index .hero8-section-area .chessent-hero-visual {
  justify-content: flex-start !important;
  align-items: flex-start !important;
  padding-top: 10px !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-shell {
  justify-content: flex-start !important;
  align-items: flex-end !important;
  gap: 8px !important;
  margin-top: -150px !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-frame {
  width: min(100%, 590px) !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-shell img {
  width: min(100%, 590px) !important;
  height: auto !important;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card {
  width: min(100%, 590px) !important;
  margin: 0 !important;
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area {
    padding: 132px 0 72px !important;
  }

  .chessent-index .hero8-section-area .row.chessent-hero-layout,
  .chessent-index .hero8-section-area .chessent-hero-copy-col,
  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    align-items: center !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual {
    justify-content: center !important;
    align-items: center !important;
    padding-top: 0 !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    margin-top: 0 !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-frame,
  .chessent-index .hero8-section-area .chessent-hero-image-shell img,
  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    width: min(100%, 360px) !important;
  }
}

/* Hero Stack Alignment Final */
.chessent-index .hero8-section-area {
  padding-bottom: 48px !important;
}

.chessent-index .hero8-section-area .row.chessent-hero-layout {
  align-items: flex-start !important;
}

.chessent-index .hero8-section-area .chessent-hero-copy-col,
.chessent-index .hero8-section-area .chessent-hero-visual-col {
  align-items: flex-start !important;
}

.chessent-index .hero8-section-area .chessent-hero-visual {
  justify-content: flex-start !important;
  align-items: flex-start !important;
  padding-top: 6px !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-shell {
  justify-content: flex-start !important;
  align-items: flex-end !important;
  gap: 8px !important;
  margin-top: -116px !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-frame {
  width: min(100%, 590px) !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-shell img {
  width: min(100%, 590px) !important;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card {
  width: min(100%, 590px) !important;
  margin: 0 !important;
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area {
    padding-bottom: 72px !important;
  }

  .chessent-index .hero8-section-area .row.chessent-hero-layout,
  .chessent-index .hero8-section-area .chessent-hero-copy-col,
  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    align-items: center !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual {
    justify-content: center !important;
    align-items: center !important;
    padding-top: 0 !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    align-items: center !important;
    margin-top: 0 !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-frame,
  .chessent-index .hero8-section-area .chessent-hero-image-shell img,
  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    width: min(100%, 360px) !important;
  }
}

/* Hero Vertical Lift */
.chessent-index .hero8-section-area .row.chessent-hero-layout {
  align-items: flex-start !important;
}

.chessent-index .hero8-section-area .chessent-hero-copy-col,
.chessent-index .hero8-section-area .chessent-hero-visual-col {
  align-items: flex-start !important;
}

.chessent-index .hero8-section-area .chessent-hero-visual {
  padding-top: 18px !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-shell {
  margin-top: -78px !important;
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area .row.chessent-hero-layout,
  .chessent-index .hero8-section-area .chessent-hero-copy-col,
  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    align-items: center !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual {
    padding-top: 0 !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    margin-top: 0 !important;
  }
}

/* Section CTA Hover Lock */
.chessent-index .chessent-approach-copy .vl-btn8,
.chessent-index .chessent-approach-copy .vl-btn8:hover {
  background: #1aa4b5 !important;
  color: #ffffff !important;
}

.chessent-index .chessent-approach-copy .vl-btn8::after,
.chessent-index .chessent-approach-copy .vl-btn8:hover::after {
  background: #1aa4b5 !important;
}

.chessent-index .chessent-about-actions .chessent-ghost-btn,
.chessent-index .chessent-about-actions .chessent-ghost-btn:hover {
  background: rgba(26, 164, 181, 0.06) !important;
  border-color: rgba(26, 164, 181, 0.22) !important;
  color: #1aa4b5 !important;
}

.chessent-index .chessent-approach-step-accent .chessent-approach-step-number {
  color: #0f7784 !important;
}

.chessent-index .testimonial8-section-area {
  background:
    linear-gradient(180deg, #f7fdfe 0%, #edf9fb 100%) !important;
}

.chessent-index .chessent-testimonial-card {
  border-color: rgba(26, 164, 181, 0.1);
  box-shadow: 0 24px 52px rgba(16, 88, 97, 0.08);
}

.chessent-index .chessent-footer-cta-shell {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(135deg, #1aa4b5 0%, #14909f 58%, #116f7c 100%) !important;
  box-shadow: 0 32px 64px rgba(10, 76, 84, 0.18) !important;
}

.chessent-index .chessent-footer-cta-main h2,
.chessent-index .chessent-footer-cta-main p,
.chessent-index .chessent-footer-cta-kicker,
.chessent-index .chessent-footer-cta-side h3,
.chessent-index .chessent-footer-cta-side p {
  color: #ffffff !important;
}

.chessent-index .chessent-footer-cta-main p,
.chessent-index .chessent-footer-cta-side p,
.chessent-index .chessent-footer-cta-kicker {
  opacity: 0.88;
}

.chessent-index .chessent-footer-cta-side {
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(12px);
}

.chessent-index .chessent-cta-light-btn {
  background: #ffffff !important;
  color: #0f7784 !important;
}

.chessent-index .chessent-cta-accent-btn,
.chessent-index .chessent-footer-cta-side-actions a,
.chessent-index .chessent-footer-join-btn {
  background: #ffffff !important;
  color: #117885 !important;
  box-shadow: 0 16px 30px rgba(8, 74, 82, 0.14) !important;
}

.chessent-index .chessent-cta-accent-btn:hover,
.chessent-index .chessent-footer-cta-side-actions a:hover,
.chessent-index .chessent-footer-join-btn:hover,
.chessent-index .chessent-cta-light-btn:hover {
  background: #ebfcfd !important;
  color: #0e6671 !important;
}

.chessent-index .vl-footer6-section-area {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 22%),
    linear-gradient(180deg, #138a98 0%, #106b76 100%) !important;
  box-shadow: none !important;
}

.chessent-index .chessent-footer-brand h3,
.chessent-index .chessent-footer-links h3,
.chessent-index .chessent-footer-contact h3,
.chessent-index .chessent-footer-brand p,
.chessent-index .chessent-footer-links a,
.chessent-index .chessent-footer-contact a,
.chessent-index .chessent-footer-bottom,
.chessent-index .chessent-footer-bottom-links a {
  color: #ffffff !important;
}

.chessent-index .chessent-footer-contact i,
.chessent-index .chessent-footer-bottom-links a + a::before {
  color: rgba(255, 255, 255, 0.76) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

.chessent-index .chessent-footer-brand .social-links li a,
.chessent-index .chessent-footer-contact .social-links li a {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
}

.chessent-index .chessent-footer-brand .social-links li a:hover,
.chessent-index .chessent-footer-contact .social-links li a:hover {
  background: rgba(255, 255, 255, 0.24) !important;
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area {
    padding-bottom: 72px;
  }

  .chessent-index .widget-stat {
    padding: 20px 20px 18px;
  }

  .chessent-index .hero8-section-area .img1 {
    padding: 0;
  }

  .chessent-index .hero8-section-area .img1 img {
    border-width: 10px;
    border-radius: 24px;
  }
}

/* Hero Redesign */
.chessent-index .hero8-section-area {
  min-height: 860px;
  padding: 172px 0 92px;
}

.chessent-index .hero8-section-area .row.chessent-hero-layout {
  align-items: center;
  --bs-gutter-x: 54px;
  --bs-gutter-y: 42px;
}

.chessent-index .hero8-section-area .hero-header-area {
  max-width: 640px;
  padding-top: 34px;
}

.chessent-index .hero8-section-area .elements23 {
  top: -22px;
  left: -20px;
  max-width: 108px;
  opacity: 0.18;
}

.chessent-index .hero8-section-area .chessent-hero-eyebrow {
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chessent-index .hero8-section-area .hero-header-area h1 {
  max-width: 680px;
  font-size: clamp(3.4rem, 4.8vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.chessent-index .hero8-section-area .hero-header-area p {
  max-width: 610px;
  font-size: 18px;
  line-height: 1.82;
}

.chessent-index .chessent-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
}

.chessent-index .chessent-hero-highlights li {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.chessent-index .chessent-hero-actions {
  gap: 16px;
  margin-top: 28px;
}

.chessent-index .hero8-section-area .btn-area1 .vl-btn8,
.chessent-index .hero8-section-area .btn-area1 .chessent-ghost-btn {
  min-width: 184px;
  min-height: 60px;
  border-radius: 14px;
  font-size: 17px;
}

.chessent-index .hero8-section-area .hero-header-area .widget-boxarea {
  max-width: 500px;
  gap: 16px;
}

.chessent-index .widget-stat {
  padding: 26px 22px 22px;
  border-radius: 28px;
}

.chessent-index .hero8-section-area .hero-header-area .widget-boxarea h4 {
  font-size: clamp(2.9rem, 3.1vw, 3.8rem);
}

.chessent-index .hero8-section-area .hero-header-area .widget-boxarea a {
  margin-top: 12px;
  font-size: 17px;
}

.chessent-index .chessent-hero-contact {
  margin-top: 22px;
}

.chessent-index .chessent-hero-visual {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  width: 100% !important;
  transform: none !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.chessent-index .chessent-hero-image-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 560px);
  padding: 14px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.chessent-index .hero8-section-area .img1 img {
  display: block;
  width: auto;
  max-width: 92%;
  height: auto;
  max-height: 460px;
  margin: 0 auto;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
}

.chessent-index .chessent-hero-trust-card {
  position: absolute;
  left: 18px;
  bottom: 14px;
  display: grid;
  gap: 8px;
  width: min(248px, calc(100% - 36px));
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 40px rgba(9, 64, 71, 0.16);
}

.chessent-index .chessent-hero-trust-card strong {
  color: #0d5862;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.chessent-index .chessent-hero-trust-card span {
  color: #4d6f76;
  font-size: 14px;
  line-height: 1.6;
}

.chessent-index .chessent-hero-side-meta {
  width: min(100%, 560px);
  margin-top: 16px;
}

.chessent-index .chessent-hero-side-meta .widget-boxarea {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.chessent-index .chessent-hero-side-meta .widget-boxarea > [class*=col-] {
  width: auto;
  max-width: none;
  padding: 0;
}

.chessent-index .chessent-hero-side-meta .widget-stat {
  min-height: 164px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(8, 66, 74, 0.12);
  backdrop-filter: none;
}

.chessent-index .chessent-hero-side-meta .widget-stat h4,
.chessent-index .chessent-hero-side-meta .widget-stat a {
  color: #114a53 !important;
}

.chessent-index .chessent-hero-side-meta .widget-stat p {
  color: #5d7b82 !important;
}

.chessent-index .chessent-hero-side-meta .chessent-hero-contact {
  margin-top: 14px;
  gap: 12px;
  color: #114a53 !important;
}

.chessent-index .chessent-hero-side-meta .chessent-hero-contact span {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.18);
  color: #eafcfd !important;
}

.chessent-index .chessent-hero-side-meta .chessent-hero-contact i {
  color: #bff3f8 !important;
}

@media (max-width: 1199px) {
  .chessent-index .hero8-section-area .hero-header-area h1 {
    font-size: clamp(3.1rem, 4.5vw, 4.5rem);
  }

  .chessent-index .chessent-hero-image-shell {
    width: min(100%, 520px);
    padding: 38px 16px 16px;
  }
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area {
    min-height: auto;
    padding: 148px 0 68px;
  }

  .chessent-index .hero8-section-area .hero-header-area {
    padding-top: 20px;
  }

  .chessent-index .hero8-section-area .hero-header-area h1 {
    font-size: clamp(2.8rem, 8vw, 4rem);
    max-width: 100%;
  }

  .chessent-index .hero8-section-area .hero-header-area p {
    max-width: 100%;
    font-size: 17px;
  }

  .chessent-index .chessent-hero-highlights {
    gap: 10px;
  }

  .chessent-index .chessent-hero-highlights li {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .chessent-index .hero8-section-area .hero-header-area .widget-boxarea {
    max-width: 100%;
  }

  .chessent-index .chessent-hero-visual {
    align-items: center;
  }

  .chessent-index .chessent-hero-image-shell {
    width: 100%;
    padding: 36px 14px 14px;
  }

  .chessent-index .chessent-hero-side-meta {
    width: 100%;
  }

  .chessent-index .chessent-hero-trust-card {
    left: 18px;
    bottom: 16px;
  }
}

@media (max-width: 767px) {
  .chessent-index .hero8-section-area .hero-header-area h1 {
    font-size: 2.65rem;
    line-height: 1.02;
  }

  .chessent-index .chessent-hero-actions {
    gap: 12px;
  }

  .chessent-index .hero8-section-area .btn-area1 .vl-btn8,
  .chessent-index .hero8-section-area .btn-area1 .chessent-ghost-btn {
    min-width: 100%;
  }

  .chessent-index .hero8-section-area .hero-header-area .widget-boxarea {
    grid-template-columns: 1fr 1fr;
  }

  .chessent-index .chessent-hero-side-meta .widget-boxarea {
    grid-template-columns: 1fr;
  }

  .chessent-index .widget-stat {
    padding: 20px 18px 18px;
  }

  .chessent-index .chessent-hero-contact span {
    width: 100%;
    justify-content: flex-start;
  }

  .chessent-index .chessent-hero-image-shell {
    padding: 32px 12px 12px;
    border-radius: 28px;
  }

  .chessent-index .hero8-section-area .img1 img {
    max-width: 94%;
    max-height: 340px;
    border-radius: 22px;
  }

  .chessent-index .chessent-hero-trust-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}

.chessent-index .chessent-hero-visual,
.chessent-index .chessent-hero-image-shell,
.chessent-index .hero8-section-area .img1,
.chessent-index .hero8-section-area .img1 img {
  background: transparent !important;
}

.chessent-index .hero8-section-area .img1 img {
  border: 0 !important;
  box-shadow: none !important;
}

.chessent-index .hero8-section-area .chessent-hero-copy-col,
.chessent-index .hero8-section-area .chessent-hero-visual-col {
  display: flex;
  align-items: stretch;
}

.chessent-index .hero8-section-area .hero-header-area,
.chessent-index .chessent-hero-visual {
  width: 100%;
  min-height: 760px;
}

.chessent-index .chessent-hero-visual {
  justify-content: center;
  align-items: stretch;
}

.chessent-index .hero8-section-area .hero-header-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chessent-index .chessent-hero-image-shell {
  width: min(100%, 900px);
  min-height: 760px;
  padding: 0;
  justify-content: flex-end;
}

.chessent-index .hero8-section-area .img1 img {
  width: auto;
  max-width: none;
  height: 760px;
  margin: 0;
}

.chessent-index .chessent-hero-trust-card {
  left: 0;
  bottom: 26px;
  width: min(270px, calc(100% - 24px));
}

@media (max-width: 1199px) {
  .chessent-index .hero8-section-area .hero-header-area,
  .chessent-index .chessent-hero-visual {
    min-height: 660px;
  }

  .chessent-index .chessent-hero-image-shell {
    width: min(100%, 760px);
    min-height: 660px;
  }

  .chessent-index .hero8-section-area .img1 img {
    height: 660px;
  }
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area .chessent-hero-copy-col,
  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    display: block;
  }

  .chessent-index .hero8-section-area .hero-header-area,
  .chessent-index .chessent-hero-visual {
    min-height: 0;
  }

  .chessent-index .chessent-hero-image-shell {
    min-height: 0;
  }

  .chessent-index .hero8-section-area .img1 img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
}

/* Final hero image scale lock */
.chessent-index .hero8-section-area .chessent-hero-visual-col {
  align-items: flex-end;
}

.chessent-index .hero8-section-area .chessent-hero-image-shell {
  width: 100% !important;
  min-height: 760px !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-shell img {
  height: 760px !important;
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  transform: scale(1.14);
  transform-origin: bottom center;
}

@media (max-width: 1199px) {
  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    min-height: 660px !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell img {
    height: 660px !important;
    transform: scale(1.1);
  }
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    align-items: stretch;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    min-height: 0 !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell img {
    height: auto !important;
    width: 100% !important;
    max-width: 94% !important;
    transform: none !important;
  }
}

/* Hero Section Cleanup */
.chessent-index .hero8-section-area {
  min-height: 700px !important;
  padding: 150px 0 40px !important;
}

.chessent-index .hero8-section-area .row.chessent-hero-layout {
  align-items: end !important;
}

.chessent-index .hero8-section-area .hero-header-area {
  max-width: 610px;
  min-height: 0 !important;
  padding-top: 8px !important;
}

.chessent-index .hero8-section-area .hero-header-area h1 {
  font-size: clamp(3rem, 4.4vw, 4.9rem);
  line-height: 0.98;
}

.chessent-index .hero8-section-area .hero-header-area p {
  max-width: 560px;
  margin-bottom: 0;
}

.chessent-index .hero8-section-area .chessent-hero-copy-col,
.chessent-index .hero8-section-area .chessent-hero-visual-col {
  display: flex !important;
  align-items: end !important;
}

.chessent-index .hero8-section-area .chessent-hero-visual {
  min-height: 0 !important;
  height: auto !important;
  justify-content: flex-end !important;
  align-items: flex-end !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-shell {
  width: min(100%, 640px) !important;
  min-height: 560px !important;
  height: 560px !important;
  padding: 0 !important;
  justify-content: flex-end !important;
  align-items: flex-end !important;
  overflow: hidden;
}

.chessent-index .hero8-section-area .chessent-hero-image-shell img {
  width: auto !important;
  height: 560px !important;
  max-width: 100% !important;
  max-height: none !important;
  margin-left: auto !important;
  transform: none !important;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card {
  left: 18px !important;
  bottom: 18px !important;
  width: min(270px, calc(100% - 36px)) !important;
}

@media (max-width: 1199px) {
  .chessent-index .hero8-section-area {
    min-height: 640px !important;
    padding: 144px 0 36px !important;
  }

  .chessent-index .hero8-section-area .hero-header-area h1 {
    font-size: clamp(2.8rem, 4.2vw, 4.2rem);
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    width: min(100%, 560px) !important;
    min-height: 500px !important;
    height: 500px !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell img {
    height: 500px !important;
  }
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area {
    min-height: auto !important;
    padding: 140px 0 48px !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-copy-col,
  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    display: block !important;
  }

.chessent-index .hero8-section-area .hero-header-area,
.chessent-index .hero8-section-area .chessent-hero-visual,
.chessent-index .hero8-section-area .chessent-hero-image-shell {
  min-height: 0 !important;
  height: auto !important;
}

  .chessent-index .hero8-section-area .hero-header-area {
    padding-top: 0 !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual {
    align-items: center !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    width: 100% !important;
    overflow: visible;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell img {
    width: 100% !important;
    height: auto !important;
    max-width: 88% !important;
  }
}

/* Hero Right Image Final Layout */
.chessent-index .hero8-section-area {
  min-height: auto !important;
  padding: 146px 0 44px !important;
}

.chessent-index .hero8-section-area .row.chessent-hero-layout {
  align-items: center !important;
}

.chessent-index .hero8-section-area .chessent-hero-copy-col,
.chessent-index .hero8-section-area .chessent-hero-visual-col {
  display: flex !important;
  align-items: center !important;
}

.chessent-index .hero8-section-area .hero-header-area {
  width: 100%;
  max-width: 620px;
  min-height: 0 !important;
  height: auto !important;
  padding-top: 42px !important;
}

.chessent-index .hero8-section-area .chessent-hero-visual {
  width: 100%;
  min-height: 0 !important;
  height: auto !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-shell {
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  overflow: visible !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-shell img {
  display: block !important;
  width: min(100%, 640px) !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  margin: 0 0 0 auto !important;
  transform: none !important;
}

@media (max-width: 1199px) {
  .chessent-index .hero8-section-area {
    padding: 138px 0 40px !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell img {
    width: min(100%, 560px) !important;
  }
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area .chessent-hero-copy-col,
  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    display: block !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual {
    justify-content: center !important;
    margin-top: 22px;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    justify-content: center !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell img {
    width: min(100%, 460px) !important;
    margin: 0 auto !important;
  }
}

/* Hero Final Layout Lock */
.chessent-index .hero8-section-area {
  min-height: auto !important;
  padding: 146px 0 54px !important;
}

.chessent-index .hero8-section-area .row.chessent-hero-layout {
  align-items: stretch !important;
}

.chessent-index .hero8-section-area .chessent-hero-copy-col,
.chessent-index .hero8-section-area .chessent-hero-visual-col {
  display: flex !important;
  align-items: stretch !important;
}

.chessent-index .hero8-section-area .hero-header-area {
  max-width: 600px !important;
  min-height: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.chessent-index .hero8-section-area .chessent-hero-visual {
  width: 100% !important;
  min-height: 100% !important;
  height: 100% !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-shell {
  width: 100% !important;
  min-height: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-end !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  overflow: visible !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-frame {
  width: min(100%, 600px) !important;
  min-height: 100% !important;
  height: 100% !important;
  margin-left: auto !important;
  padding: 20px 24px 0 !important;
  border-radius: 34px !important;
  border: 0 !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
  box-shadow: 0 30px 70px rgba(4, 54, 62, 0.18) !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  overflow: hidden !important;
  position: relative;
}

.chessent-index .hero8-section-area .chessent-hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 16px 16px 0;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.chessent-index .hero8-section-area .chessent-hero-image-shell img {
  width: auto !important;
  height: calc(100% - 10px) !important;
  max-width: 100% !important;
  max-height: none !important;
  margin: 0 auto !important;
  display: block !important;
  object-fit: contain !important;
  transform: none !important;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card {
  width: min(100%, 312px) !important;
  margin: -34px 22px 0 auto !important;
  padding: 18px 20px !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 18px 42px rgba(5, 51, 59, 0.14) !important;
  position: relative;
  z-index: 2;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card h3 {
  margin: 0 0 6px !important;
  color: #0e6070 !important;
  font-size: 24px !important;
  line-height: 1.05 !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card p {
  margin: 0 !important;
  color: #476875 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  font-weight: 500 !important;
}

@media (max-width: 1199px) {
  .chessent-index .hero8-section-area {
    padding: 138px 0 46px !important;
  }

  .chessent-index .hero8-section-area .hero-header-area {
    max-width: 100% !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-frame {
    width: min(100%, 540px) !important;
    padding: 18px 20px 0 !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell img {
    height: calc(100% - 8px) !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    width: min(100%, 290px) !important;
    margin: -28px 16px 0 auto !important;
    padding: 16px 18px !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card h3 {
    font-size: 22px !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card p {
    font-size: 14px !important;
  }
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area {
    padding: 132px 0 44px !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-copy-col,
  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    display: block !important;
  }

  .chessent-index .hero8-section-area .row.chessent-hero-layout {
    align-items: center !important;
  }

  .chessent-index .hero8-section-area .hero-header-area,
  .chessent-index .hero8-section-area .chessent-hero-visual,
  .chessent-index .hero8-section-area .chessent-hero-image-shell,
  .chessent-index .hero8-section-area .chessent-hero-image-frame {
    min-height: 0 !important;
    height: auto !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual {
    justify-content: center !important;
    margin-top: 28px !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    justify-content: center !important;
    align-items: center !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-frame {
    width: min(100%, 500px) !important;
    padding: 16px 18px 0 !important;
    margin: 0 auto !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell img {
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    width: min(100%, 320px) !important;
    margin: 18px auto 0 !important;
    padding: 16px 18px !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card h3 {
    font-size: 22px !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card p {
    font-size: 14px !important;
  }
}

/* Hero Right Stack Final */
.chessent-index .hero8-section-area .chessent-hero-image-shell {
  justify-content: flex-start !important;
  align-items: flex-end !important;
  gap: 10px !important;
  padding-top: 10px !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-frame {
  width: min(100%, 600px) !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-frame::before {
  content: none !important;
}

.chessent-index .hero8-section-area .chessent-hero-image-shell img {
  width: min(100%, 600px) !important;
  height: auto !important;
  margin: 0 0 0 auto !important;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card {
  width: min(100%, 600px) !important;
  margin: 0 !important;
  align-self: flex-end !important;
  padding: 18px 24px !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 18px 36px rgba(6, 76, 85, 0.14) !important;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card h3 {
  margin: 0 0 8px !important;
  font-size: 22px !important;
  line-height: 1.05 !important;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card p {
  font-size: 14px !important;
  line-height: 1.75 !important;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card {
  overflow: hidden !important;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 164, 181, 0.12) 0%, rgba(26, 164, 181, 0) 72%);
  pointer-events: none;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  gap: 18px;
  align-items: start;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card__copy {
  min-width: 0;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #148796;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card__eyebrow::before {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1aa4b5 0%, rgba(26, 164, 181, 0.18) 100%);
  content: "";
}

.chessent-index .hero8-section-area .chessent-hero-trust-card__art {
  position: relative;
  width: 108px;
  height: 108px;
  align-self: center;
  justify-self: end;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card__art svg {
  width: 100%;
  height: 100%;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card__orbit,
.chessent-index .hero8-section-area .chessent-hero-trust-card__pulse,
.chessent-index .hero8-section-area .chessent-hero-trust-card__cross {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card__orbit {
  transform-origin: center;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card__orbit--one {
  stroke-width: 4;
  stroke-dasharray: 112 180;
  animation: chessentTrustOrbit 5.6s linear infinite;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card__orbit--two {
  stroke: rgba(17, 118, 132, 0.28);
  stroke-width: 3;
  stroke-dasharray: 78 120;
  animation: chessentTrustOrbitReverse 4.2s linear infinite;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card__pulse {
  stroke: rgba(20, 135, 150, 0.9);
  stroke-width: 4;
  stroke-dasharray: 32 120;
  animation: chessentTrustPulse 2.1s ease-in-out infinite;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card__core {
  fill: rgba(26, 164, 181, 0.14);
  stroke: rgba(20, 135, 150, 0.18);
  stroke-width: 2;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card__cross {
  stroke: #0d6675;
  stroke-width: 5;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card__highlights {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chessent-index .hero8-section-area .chessent-hero-trust-card__highlights span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(17, 118, 132, 0.14);
  border-radius: 999px;
  background: rgba(232, 245, 247, 0.72);
  color: #2f6270;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

@keyframes chessentTrustOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes chessentTrustOrbitReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes chessentTrustPulse {
  0%,
  100% {
    stroke-dashoffset: 0;
    opacity: 0.48;
  }

  50% {
    stroke-dashoffset: -46;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    padding-top: 0 !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-frame {
    width: min(100%, 500px) !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell img {
    width: 100% !important;
    max-width: 500px !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    width: min(100%, 360px) !important;
    align-self: center !important;
    margin: 0 auto !important;
  }
}

/* Footer Layout Final */
.chessent-index .vl-footer6-section-area .container {
  max-width: 1260px !important;
}

.chessent-index .chessent-footer-grid {
  grid-template-columns: minmax(250px, 1.1fr) minmax(150px, 0.62fr) minmax(220px, 0.9fr) minmax(250px, 1fr) !important;
  gap: 56px !important;
  align-items: start !important;
}

.chessent-index .chessent-footer-brand,
.chessent-index .chessent-footer-links,
.chessent-index .chessent-footer-contact {
  width: 100%;
  min-width: 0;
}

.chessent-index .chessent-footer-brand {
  max-width: 300px;
}

.chessent-index .chessent-footer-brand p {
  max-width: 100% !important;
}

.chessent-index .chessent-footer-join-btn {
  width: 100%;
  max-width: 240px !important;
  justify-content: flex-start !important;
}

.chessent-index .chessent-footer-links ul,
.chessent-index .chessent-footer-contact ul {
  gap: 14px !important;
}

.chessent-index .chessent-footer-contact ul li {
  align-items: flex-start !important;
}

.chessent-index .chessent-footer-contact a {
  display: inline-block;
  max-width: 100%;
}

.chessent-index .chessent-footer-contact .chessent-address-landmark {
  display: block;
}

.chessent-index .chessent-footer-bottom {
  max-width: 1260px;
  margin: 34px auto 0 !important;
}

@media (max-width: 1199px) {
  .chessent-index .chessent-footer-grid {
    grid-template-columns: minmax(240px, 1.1fr) minmax(150px, 0.75fr) minmax(200px, 0.9fr) minmax(230px, 1fr) !important;
    gap: 34px !important;
  }
}

@media (max-width: 991px) {
  .chessent-index .chessent-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px 24px !important;
  }

  .chessent-index .chessent-footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .chessent-index .chessent-footer-grid {
    grid-template-columns: 1fr !important;
  }

  .chessent-index .chessent-footer-join-btn {
    max-width: 100% !important;
    justify-content: center !important;
  }

  .chessent-index .chessent-footer-bottom {
    margin-top: 28px !important;
  }
}

/* Homepage Button Hover Lock */
.chessent-index .hero8-section-area .btn-area1 .vl-btn8,
.chessent-index .hero8-section-area .btn-area1 .vl-btn8:hover {
  background: #ffffff !important;
  color: #0f7784 !important;
}

.chessent-index .about8-section-area .vl-btn8,
.chessent-index .about8-section-area .vl-btn8:hover,
.chessent-index .chessent-video-cta .vl-btn8,
.chessent-index .chessent-video-cta .vl-btn8:hover {
  background: #1aa4b5 !important;
  color: #ffffff !important;
}

.chessent-index .hero8-section-area .btn-area1 .vl-btn8::after,
.chessent-index .hero8-section-area .btn-area1 .vl-btn8:hover::after {
  background: #ffffff !important;
}

/* Final Responsive Overrides */
.homepage8-body,
.chessent-site {
  overflow-x: hidden;
}

.homepage8-body img,
.chessent-site img {
  max-width: 100%;
}

@media (max-width: 1199px) {
  .chessent-index .chessent-video-grid,
  .chessent-index .chessent-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chessent-index .chessent-testimonial-card--featured {
    grid-column: span 2;
  }

  .homepage8-body .chessent-footer-cta-shell,
  .chessent-index .chessent-footer-cta-shell {
    grid-template-columns: 1fr;
  }

  .homepage8-body .chessent-footer-cta-main,
  .homepage8-body .chessent-footer-cta-side,
  .chessent-index .chessent-footer-cta-main,
  .chessent-index .chessent-footer-cta-side {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .homepage8-body .vl-transparent-header,
  .chessent-site .vl-transparent-header,
  .homepage8-body .header-sticky,
  .chessent-site .header-sticky {
    padding: 10px 0 !important;
  }

  .homepage8-body .vl-transparent-header .row-bg1,
  .homepage8-body .header-sticky .row-bg1,
  .chessent-site .vl-transparent-header .row-bg1,
  .chessent-site .header-sticky .row-bg1 {
    padding: 10px 14px !important;
    border-radius: 18px !important;
  }

  .homepage8-body .vl-transparent-header .vl-logo img,
  .homepage8-body .vl-offcanvas .vl-offcanvas-logo,
  .chessent-site .vl-transparent-header .vl-logo img,
  .chessent-site .vl-offcanvas .vl-offcanvas-logo {
    height: 40px !important;
  }

  .chessent-index .vl-offcanvas {
    width: min(86vw, 360px);
  }

  .chessent-index .hero8-section-area .row.chessent-hero-layout {
    gap: 28px;
  }

  .chessent-index .hero8-section-area .chessent-hero-copy-col,
  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    width: 100%;
  }

  .chessent-index .hero8-section-area .hero-header-area {
    max-width: none;
  }

  .chessent-index .hero8-section-area .hero-header-area h1 {
    font-size: clamp(2.6rem, 7.8vw, 4.4rem);
    line-height: 1.04;
  }

  .chessent-index .hero8-section-area .hero-header-area p {
    max-width: 34rem;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    justify-content: center !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell img {
    margin: 0 auto !important;
  }

  .chessent-index .chessent-hero-actions {
    gap: 14px;
  }

  .chessent-index .chessent-about-feature-card {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .chessent-index .chessent-about-feature-icon {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }

  .chessent-index .chessent-video-grid,
  .chessent-index .chessent-testimonial-grid,
  .homepage8-body .chessent-footer-grid {
    grid-template-columns: 1fr;
  }

  .chessent-index .chessent-testimonial-card--featured {
    grid-column: span 1;
    min-height: auto;
    padding: 34px 30px 30px;
  }

  .chessent-index .chessent-testimonial-card--featured .pera {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
  }

  .chessent-inner-page .value-stack,
  .chessent-inner-page .team-grid,
  .chessent-inner-page .service-stack,
  .chessent-inner-page .testimonial-stack,
  .chessent-inner-page .video-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chessent-inner-page .service-card img {
    height: 210px;
  }

  .chessent-inner-page .team-card img {
    height: 280px;
  }

  .homepage8-body .chessent-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .homepage8-body .vl-transparent-header .row-bg1,
  .homepage8-body .header-sticky .row-bg1,
  .chessent-site .vl-transparent-header .row-bg1,
  .chessent-site .header-sticky .row-bg1 {
    padding: 9px 12px !important;
    border-radius: 16px !important;
  }

  .homepage8-body .vl-transparent-header .vl-logo img,
  .homepage8-body .vl-offcanvas .vl-offcanvas-logo,
  .chessent-site .vl-transparent-header .vl-logo img,
  .chessent-site .vl-offcanvas .vl-offcanvas-logo {
    height: 34px !important;
  }

  .chessent-index .hero8-section-area {
    padding: 126px 0 34px !important;
  }

  .chessent-index .hero8-section-area .hero-header-area h1 {
    font-size: clamp(2.2rem, 11vw, 3.7rem) !important;
    line-height: 1.06;
  }

  .chessent-index .hero8-section-area .hero-header-area p {
    font-size: 1rem !important;
    line-height: 1.72;
  }

  .chessent-index .chessent-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .chessent-index .hero8-section-area .btn-area1 .vl-btn8,
  .chessent-index .hero8-section-area .btn-area1 .chessent-ghost-btn {
    width: 100%;
    min-width: 0;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell img {
    max-width: 100% !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    position: static !important;
    width: 100% !important;
    margin-top: 18px;
  }

  .chessent-index .chessent-about-feature-card,
  .chessent-inner-page .chessent-why-point {
    grid-template-columns: 1fr;
  }

  .chessent-index .chessent-about-feature-icon,
  .chessent-inner-page .chessent-why-point-number {
    margin-bottom: 8px;
  }

  .chessent-inner-page .page-hero {
    padding: 118px 0 60px;
  }

  .chessent-inner-page .section-space,
  .chessent-inner-page .section-space-sm {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .chessent-inner-page .value-stack,
  .chessent-inner-page .team-grid,
  .chessent-inner-page .service-stack,
  .chessent-inner-page .testimonial-stack,
  .chessent-inner-page .video-links,
  .chessent-inner-page .gallery-grid {
    grid-template-columns: 1fr;
  }

  .chessent-inner-page .service-card img,
  .chessent-inner-page .team-card img {
    height: auto;
    min-height: 220px;
  }

  .chessent-inner-page .contact-map-shell,
  .chessent-inner-page .contact-map-shell iframe {
    min-height: 320px;
  }

  .chessent-inner-page .accordion-button {
    padding: 18px 18px;
    font-size: 0.98rem;
  }

  .chessent-index .chessent-video-copy,
  .chessent-index .chessent-testimonial-card,
  .chessent-index .chessent-testimonial-card--featured {
    padding-left: 22px;
    padding-right: 22px;
  }

  .homepage8-body .chessent-footer-cta-actions,
  .homepage8-body .chessent-footer-cta-side-actions,
  .chessent-index .chessent-footer-cta-actions,
  .chessent-index .chessent-footer-cta-side-actions {
    grid-template-columns: 1fr;
  }

  .homepage8-body .chessent-footer-cta-actions,
  .chessent-index .chessent-footer-cta-actions {
    flex-direction: column;
  }

  .homepage8-body .chessent-cta-light-btn,
  .homepage8-body .chessent-cta-accent-btn,
  .homepage8-body .chessent-footer-cta-side-actions a,
  .homepage8-body .chessent-footer-join-btn,
  .chessent-index .chessent-cta-light-btn,
  .chessent-index .chessent-cta-accent-btn,
  .chessent-index .chessent-footer-cta-side-actions a,
  .chessent-index .chessent-footer-join-btn {
    width: 100%;
    min-width: 0;
  }

  .homepage8-body .chessent-footer-contact .social-links {
    flex-wrap: wrap;
  }
}

.chessent-index .about8-section-area .vl-btn8::after,
.chessent-index .about8-section-area .vl-btn8:hover::after,
.chessent-index .chessent-video-cta .vl-btn8::after,
.chessent-index .chessent-video-cta .vl-btn8:hover::after {
  background: #1aa4b5 !important;
}

/* Approach Typography Reset */
.chessent-index .chessent-approach-step h3 {
  color: #183743 !important;
}

.chessent-index .chessent-approach-step p {
  color: #5d7480 !important;
}

.chessent-index .chessent-approach-step-accent h3,
.chessent-index .chessent-approach-step-accent p {
  color: #ffffff !important;
}

/* Hero True Last Override */
@media (min-width: 992px) {
  .chessent-index .hero8-section-area {
    padding: 146px 0 120px !important;
    overflow: hidden !important;
  }

  .chessent-index .hero8-section-area .row.chessent-hero-layout {
    align-items: flex-start !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-copy-col,
  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    display: flex !important;
    align-items: flex-start !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual-col {
    justify-content: flex-end !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    width: min(100%, 620px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    margin-top: -36px !important;
    padding-top: 0 !important;
    transform: none !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-frame {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-frame::before {
    content: none !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-image-shell img {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: 540px !important;
    object-fit: contain !important;
    object-position: top center !important;
    display: block !important;
    margin: 0 0 0 auto !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    align-self: stretch !important;
  }
}

@media (max-width: 991px) {
  .chessent-index .hero8-section-area {
    overflow: hidden !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-visual,
  .chessent-index .hero8-section-area .chessent-hero-image-shell {
    align-items: center !important;
    justify-content: center !important;
    margin-top: 0 !important;
    transform: none !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    width: min(100%, 360px) !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card__top {
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 12px;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card__art {
    width: 92px;
    height: 92px;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card__highlights span {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .chessent-index .hero8-section-area .chessent-hero-trust-card__top {
    grid-template-columns: 1fr;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card__art {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chessent-index .hero8-section-area .chessent-hero-trust-card__orbit--one,
  .chessent-index .hero8-section-area .chessent-hero-trust-card__orbit--two,
  .chessent-index .hero8-section-area .chessent-hero-trust-card__pulse {
    animation: none !important;
  }
}

/* Final Site Responsive Patch */
@media (max-width: 767px) {
  .chessent-index .hero8-section-area .chessent-hero-trust-card {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    margin-top: 18px !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card__top {
    grid-template-columns: 1fr !important;
  }

  .chessent-index .hero8-section-area .chessent-hero-trust-card__art {
    display: none !important;
  }

  .homepage8-body .chessent-footer-grid,
  .chessent-inner-page .team-grid,
  .chessent-inner-page .service-stack,
  .chessent-inner-page .testimonial-stack,
  .chessent-inner-page .video-links,
  .chessent-inner-page .value-stack,
  .chessent-inner-page .gallery-grid,
  .chessent-index .chessent-video-grid,
  .chessent-index .chessent-testimonial-grid {
    grid-template-columns: 1fr !important;
  }

  .homepage8-body .chessent-footer-cta-shell,
  .chessent-index .chessent-footer-cta-shell {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 575px) {
  .chessent-site .section-kicker {
    gap: 8px;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .chessent-site .section-heading,
  .homepage8-body .chessent-footer-cta-main h2,
  .homepage8-body .chessent-footer-brand h3,
  .homepage8-body .chessent-footer-links h3,
  .homepage8-body .chessent-footer-contact h3 {
    word-break: break-word;
  }

  .chessent-site .section-copy,
  .chessent-site .section-copy p,
  .homepage8-body .chessent-footer-brand p,
  .homepage8-body .chessent-footer-contact a,
  .homepage8-body .chessent-footer-links a {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .chessent-site .contact-list a,
  .chessent-site .contact-list span,
  .homepage8-body .chessent-footer-contact ul li {
    min-width: 0;
  }

  .chessent-site .contact-list a span,
  .chessent-site .contact-list > span > span,
  .homepage8-body .chessent-footer-contact a {
    min-width: 0;
    word-break: break-word;
  }

  .chessent-site .service-card-body,
  .chessent-site .team-card-body,
  .chessent-site .chessent-video-copy,
  .chessent-site .faq-card,
  .chessent-site .testimonial-card,
  .chessent-site .support-card {
    padding: 20px;
  }

  .chessent-site .service-tag-list,
  .chessent-site .chessent-hero-trust-card__highlights,
  .chessent-site .chessent-why-tags {
    gap: 8px;
  }

  .chessent-site .service-tag-list span,
  .chessent-site .chessent-hero-trust-card__highlights span,
  .chessent-site .chessent-why-tags span {
    min-height: 0;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .homepage8-body .chessent-footer-bottom,
  .homepage8-body .chessent-footer-bottom-links {
    width: 100%;
  }

  .homepage8-body .chessent-footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
}

.service-card--clickable {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.service-card--clickable:hover,
.service-card--clickable:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--chessent-shadow);
  border-color: rgba(26, 164, 181, 0.35);
  outline: none;
}

.service-card--clickable::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(26, 164, 181, 0.92);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'></line><polyline points='12 5 19 12 12 19'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  box-shadow: 0 10px 24px rgba(26, 164, 181, 0.35);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.service-card--clickable:hover::after,
.service-card--clickable:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.service-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--chessent-primary);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.service-card-readmore i {
  transition: transform 0.3s ease;
}

.service-card--clickable:hover .service-card-readmore i,
.service-card--clickable:focus-visible .service-card-readmore i {
  transform: translateX(4px);
}

.chessent-service-modal .modal-content {
  border: 1px solid rgba(16, 33, 54, 0.08);
  border-radius: 24px;
  background: var(--chessent-white);
  box-shadow: var(--chessent-shadow);
  overflow: hidden;
}

.chessent-service-modal .modal-header {
  align-items: flex-start;
  gap: 16px;
  padding: 28px 32px 18px;
  border-bottom: 1px solid var(--chessent-border);
  background: linear-gradient(135deg, var(--chessent-pale), var(--chessent-warm));
}

.chessent-service-modal .modal-header .section-kicker {
  margin-bottom: 6px;
}

.chessent-service-modal .modal-title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--chessent-ink);
  line-height: 1.25;
}

.chessent-service-modal .btn-close {
  margin: 4px 0 0;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}

.chessent-service-modal .btn-close:hover {
  opacity: 1;
}

.chessent-service-modal .modal-body {
  padding: 26px 32px 30px;
  color: var(--chessent-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.chessent-service-modal .modal-body p {
  margin-bottom: 16px;
}

.chessent-service-modal .modal-body p:last-child {
  margin-bottom: 0;
}

.chessent-service-modal .modal-subheading {
  margin: 26px 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--chessent-ink);
}

.chessent-service-modal .modal-list {
  padding-left: 20px;
  margin: 0 0 16px;
}

.chessent-service-modal .modal-list li {
  margin-bottom: 10px;
  color: var(--chessent-muted);
  line-height: 1.72;
  list-style: revert;
}

.chessent-service-modal .modal-list li::marker {
  color: var(--chessent-primary);
}

.chessent-cta-online-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a3d, #ff5f2e);
  color: #ffffff !important;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: none;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 14px 30px rgba(255, 107, 53, 0.28);
  white-space: nowrap;
}

.chessent-cta-online-btn:hover,
.chessent-cta-online-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #ffffff !important;
  box-shadow: 0 18px 38px rgba(255, 107, 53, 0.38);
  outline: none;
}

.chessent-cta-online-btn i {
  font-size: 0.95rem;
}

.chessent-offcanvas-online-btn {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  width: 100%;
}

.chessent-online-floating {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 1040;
  padding: 14px 22px;
  box-shadow: 0 18px 40px rgba(255, 107, 53, 0.42);
  animation: chessentOnlinePulse 2.4s ease-in-out infinite;
}

@keyframes chessentOnlinePulse {
  0%, 100% { box-shadow: 0 18px 40px rgba(255, 107, 53, 0.42); }
  50%      { box-shadow: 0 18px 50px rgba(255, 107, 53, 0.68); }
}

@media (max-width: 575.98px) {
  .chessent-online-floating {
    right: 14px;
    bottom: 18px;
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  .chessent-online-floating .chessent-online-floating__label {
    display: none;
  }
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 18px 0 22px;
}

.modal-gallery--three {
  grid-template-columns: repeat(3, 1fr);
}

.modal-gallery__item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--chessent-pale);
  border: 1px solid var(--chessent-border);
  box-shadow: var(--chessent-shadow-soft);
  display: flex;
  flex-direction: column;
}

.modal-gallery__item img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center center;
}

.modal-gallery__item figcaption {
  padding: 10px 14px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--chessent-secondary);
  background: var(--chessent-white);
  border-top: 1px solid var(--chessent-border);
  text-align: center;
}

@media (max-width: 767.98px) {
  .modal-gallery--three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .modal-gallery {
    grid-template-columns: 1fr;
  }

  .modal-gallery--three {
    grid-template-columns: 1fr;
  }

  .modal-gallery__item img {
    height: 230px;
  }
}

.modal-beforeafter {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 6px 0 10px;
}

.modal-beforeafter__item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #0b1416;
  border: 1px solid var(--chessent-border);
  box-shadow: var(--chessent-shadow-soft);
  display: flex;
  flex-direction: column;
}

.modal-beforeafter__item img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: center center;
  background: #0b1416;
}

.modal-beforeafter__item figcaption {
  padding: 10px 14px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--chessent-secondary);
  background: var(--chessent-white);
  border-top: 1px solid var(--chessent-border);
  text-align: center;
}

.modal-beforeafter__note {
  margin: 4px 0 16px;
  font-size: 0.86rem;
  font-style: italic;
  color: var(--chessent-muted);
}

@media (max-width: 575.98px) {
  .modal-beforeafter {
    grid-template-columns: 1fr;
  }

  .modal-beforeafter__item img {
    height: 360px;
  }
}

.chessent-service-modal .modal-highlight {
  margin-top: 20px;
  padding: 16px 20px;
  border-left: 4px solid var(--chessent-primary);
  background: var(--chessent-pale);
  border-radius: 0 14px 14px 0;
  color: var(--chessent-ink);
}

.chessent-service-modal .modal-footer {
  padding: 18px 32px 26px;
  border-top: 1px solid var(--chessent-border);
  gap: 12px;
  background: var(--chessent-pale);
}

.chessent-service-modal .modal-footer .chessent-cta-light-btn,
.chessent-service-modal .modal-footer .chessent-cta-accent-btn {
  border: none;
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .chessent-service-modal .modal-header,
  .chessent-service-modal .modal-body,
  .chessent-service-modal .modal-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .chessent-service-modal .modal-title {
    font-size: 1.5rem;
  }

  .service-card--clickable::after {
    width: 34px;
    height: 34px;
    background-size: 16px 16px;
  }
}
