:root {
  --bg: #ffffff;
  --fg: #0f172a;
  --muted: #737b8c;
  --muted-2: #64748b;
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --border-2: rgba(15, 23, 42, 0.06);
  /* --primary: #3a279b; */
  /* --secondary: #f88c1f; */
  --accent: #3a279b;
  --surface: #f5f6f8;
  --shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --radius: 14px;
  --radius-sm: 12px;
  --container: 1232px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

li {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
}

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

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

/* .container { */
  /* width: min(var(--container), calc(100% - 48px)); */
  /* margin-inline: auto; */
/* } */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  transform: translateY(-200%);
  background: var(--fg);
  color: white;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.accent {
  color: var(--primary);
}

.underline {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.muted {
  color: var(--muted-2);
  font-weight: 500;
}

/* Header / Nav */
/* .site-header { */
  /* position: sticky; */
  /* top: 0; */
  /* z-index: 50; */
  /* background: white; */
  /* border-bottom: 1px solid rgba(15, 23, 42, 0.06); */
  /* transition: box-shadow 200ms ease, border-color 200ms ease; */
/* } */

.site-header[data-scrolled="true"] {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

.brand img {
  height: 26px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(58, 39, 155, 0.1);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__text {
  font-weight: 700;
  color: var(--fg);
}

/* .nav__toggle { */
  /* display: inline-flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* width: 44px; */
  /* height: 44px; */
  /* border: 1px solid var(--border); */
  /* border-radius: 14px; */
  /* background: white; */
  /* cursor: pointer; */
/* } */

/* .nav__toggle-icon { */
  /* width: 18px; */
  /* height: 12px; */
  /* display: block; */
  /* position: relative; */
/* } */

/* .nav__toggle-icon::before, */
/* .nav__toggle-icon::after, */
/* .nav__toggle-icon { */
  /* background: transparent; */
/* } */

/* .nav__toggle-icon::before, */
/* .nav__toggle-icon::after { */
  /* content: ""; */
  /* position: absolute; */
  /* left: 0; */
  /* right: 0; */
  /* height: 2px; */
  /* background: var(--fg); */
  /* border-radius: 10px; */
/* } */

/* .nav__toggle-icon::before { */
  /* top: 0; */
/* } */

/* .nav__toggle-icon::after { */
  /* bottom: 0; */
/* } */

/* .nav__menu { */
  /* display: none; */
  /* align-items: center; */
  /* gap: 18px; */
/* } */

/* .nav__close { */
  /* display: none; */
/* } */

/* .nav__menu[data-open="true"] { */
  /* display: grid; */
  /* grid-template-columns: 1fr; */
  /* gap: 14px; */
  /* position: absolute; */
  /* left: 0; */
  /* right: 0; */
  /* top: 78px; */
  /* background: rgba(255, 255, 255, 0.98); */
  /* border-bottom: 1px solid var(--border-2); */
  /* padding: 14px 24px 18px; */
/* } */

/* .nav__links { */
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 10px; */
  /* padding: 0; */
  /* margin: 0; */
/* } */

/* .nav__link { */
  /* font-weight: 500; */
  /* color: var(--muted); */
  /* padding: 10px 10px; */
  /* border-radius: 12px; */
  /* font-size: 13px; */
/* } */

/* .nav__links li { */
  /* list-style: none; */
/* } */

/* .nav__link:hover, */
/* .nav__link:focus-visible { */
  /* background: rgba(58, 39, 155, 0.06); */
  /* color: var(--primary); */
  /* outline: none; */
/* } */

/* .nav__cta { */
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 10px; */
/* } */

/* .nav__signin { */
  /* font-weight: 500; */
  /* color: var(--primary); */
  /* border-radius: 12px; */
  /* text-align: center; */
  /* background: white; */
  /* min-width: max-content; */
  /* font-size: 14px; */
/* } */

/* .nav__signin:hover, */
/* .nav__signin:focus-visible { */
  /* background: rgba(58, 39, 155, 0.08); */
  /* outline: none; */
/* } */

/* @media (min-width: 900px) { */
  /* .nav { */
    /* display: grid; */
    /* grid-template-columns: auto 1fr auto; */
    /* align-items: center; */
  /* } */

  /* .nav__toggle { */
    /* display: none; */
  /* } */

  /* .nav__menu { */
    /* display: flex; */
    /* position: static; */
    /* justify-content: center; */
    /* gap: 18px; */
  /* } */

  /* .nav__menu[data-open="true"] { */
    /* display: flex; */
    /* position: static; */
    /* padding: 0; */
    /* border: 0; */
    /* background: transparent; */
  /* } */

  /* .nav__links { */
    /* flex-direction: row; */
    /* gap: 12px; */
    /* justify-content: center; */
    /* width: 100%; */
  /* } */

  /* .brand img { */
    /* height: 28px; */
    /* max-width: 240px; */
  /* } */

  /* .nav__link { */
    /* font-size: 13px; */
  /* } */

  /* .nav__cta { */
    /* flex-direction: row; */
    /* align-items: center; */
  /* } */
/* } */

/* Buttons */
/* .btn { */
  /* display: inline-flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* gap: 8px; */
  /* padding: 10px 12px; */
  /* border-radius: 10px; */
  /* font-weight: 600; */
  /* font-size: 14px; */
  /* border: 1px solid transparent; */
  /* transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease; */
  /* will-change: transform; */
  /* min-width: 117px; */
/* } */

/* .btn:focus-visible { */
  /* outline: 3px solid rgba(58, 39, 155, 0.35); */
  /* outline-offset: 2px; */
/* } */

/* .btn:hover { */
  /* transform: translateY(-1px); */
/* } */

/* .btn--primary { */
  /* background: var(--primary); */
  /* color: white; */
  /* box-shadow: 0 12px 26px rgba(58, 39, 155, 0.22); */
/* } */

/* .btn--primary:hover { */
  /* background: #2f1f86; */
/* } */

/* .btn--ghost { */
  /* background: rgba(255, 255, 255, 0.12); */
  /* color: white; */
  /* border-color: rgba(255, 255, 255, 0.35); */
/* } */

/* .btn--on-dark { */
  /* background: white; */
  /* color: var(--primary); */
/* } */

/* .btn--on-dark:hover { */
  /* background: rgba(255, 255, 255, 0.92); */
/* } */

/* Sections */
/* .section { */
  /* padding: 86px 0; */
/* } */

.section--muted {
  background: var(--surface);
}

.section__head {
  text-align: center;
  margin-bottom: 40px;
}
.sec_title + .section__subtitle {
    margin-top: 10px;
}
/* .section__title { */
  /* margin: 0 0 10px; */
  /* font-size: clamp(22px, 2.1vw + 14px, 36px); */
  /* line-height: 1.15; */
  /* letter-spacing: -0.02em; */
/* } */

/* .section__subtitle { */
  /* margin: 0; */
  /* color: var(--muted); */
  /* font-size: clamp(13px, 0.8vw + 12px, 18px); */
  /* max-width: 62ch; */
  /* margin-inline: auto; */
/* } */

/* Hero */
.hero {
  /* position: relative; */
  /* padding: 96px 0 56px; */
  /* overflow: clip; */
  background: var(--surface);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 320px at 50% 10%, rgba(58, 39, 155, 0.06), transparent 62%);
}

/* .hero__inner { */
  /* position: relative; */
  /* display: grid; */
  /* grid-template-columns: 1fr; */
  /* gap: 26px; */
  /* align-items: center; */
/* } */

.hero__copy {
  text-align: center;
  margin-inline: auto;
}
.hero__copy .global_btn {
    margin-top: 25px;
}
.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--secondary);
}

.hero__title {
	color: #000;
  /* margin: 0 0 12px; */
  /* font-size: clamp(28px, 3.2vw + 14px, 52px); */
  /* line-height: 1.12; */
  /* letter-spacing: -0.03em; */
}

.hero__subtitle {
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 68ch;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__media {
    max-width: min(1040px, 100%);
    margin-inline: auto;
    margin-top: 30px;
  }

.hero__glow {
  position: absolute;
  inset: -18px;
  background: linear-gradient(90deg, rgba(58, 39, 155, 0.12), rgba(248, 140, 31, 0.10), rgba(58, 39, 155, 0.12));
  filter: blur(34px);
  opacity: 0.55;
  border-radius: 40px;
}

.card {
  background: var(--card);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.card--media {
  box-shadow: var(--shadow);
}

@media (min-width: 980px) {
  /* .hero { */
    /* padding: 44px 0 64px; */
  /* } */

  /* .hero__inner { */
    /* grid-template-columns: 1fr; */
    /* gap: 30px; */
  /* } */

  /* .hero__copy { */
    /* text-align: center; */
    /* margin-inline: auto; */
  /* } */

  .hero__actions {
    justify-content: center;
  }
}

/* Grids */
.grid {
  display: grid;
  gap: 16px;
}

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

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

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

@media (min-width: 680px) {
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

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

#how-it-works .grid {
    column-gap: 30px;
    row-gap: 40px;
}

/* Cards */
.value-card,
.feature,
.step-card,
.req {
  border: 1px solid #e4e7ec;
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.value-card:hover,
.feature:hover,
.step-card:hover,
.req:hover {
  border-color: rgba(15, 23, 42, 0.10);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
  transform: translateY(-1px);
}

.value-card__icon,
.feature__icon,
.req__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgb(49 165 220 / 10%);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* .value-card:hover .value-card__icon, */
/* .feature:hover .feature__icon, */
/* .req:hover .req__icon { */
  /* background-color: #ffdfbe; */
/* } */

.value-card__title,
.feature__title {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 400;
}

.value-card__text,
.feature__text {
  font-size: 15px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(248, 140, 31, 0.18);
}

.step-card__media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-2);
  background: white;
}

.step-card__media img {
  height: 204px;
      width: 100%;
    object-fit: cover;
}

.step-card__title {
  margin: 12px 0 6px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.step-card__text {
  margin: 0;
  /* color: var(--muted); */
  font-size: 15px;
  text-align: center;
}

/* How It Works: match live typography + keep text out of card box */
#how-it-works .step-card {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  transition: none;
}

#how-it-works .step-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

#how-it-works .step-card__title {
  font-size: clamp(18px, 2.2vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* #how-it-works .step-card__text { */
  /* font-size: clamp(13px, 1.8vw, 14px); */
  /* line-height: 1.6; */
/* } */

#how-it-works .step-card__media {
  margin-bottom: 12px;
}

.req-title .container {
  max-width: 1150px;
}

.req {
  text-align: center;
  padding: 22px 15px;
}

.req__label {
    margin: 0;
    font-size: 15px;
    line-height: 20px;
    font-family: 'Arboria', sans-serif;
    margin-bottom: 5px !important;
}

.req__note {
    margin: 2px 0 0;
    font-size: 13px;
}

/* Pricing (first section card/table) */
.pricing-section .container {
  max-width: 800px;
}

.pricing-card {
  background: white;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}

.pricing-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table:focus-visible {
  outline: 3px solid rgba(58, 39, 155, 0.25);
  outline-offset: 4px;
  border-radius: 10px;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 450px;
}

.pricing-table td {
    padding: 12px 18px;
    font-size: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: rgba(15, 23, 42, 0.84);
}

.pricing-table thead th {
    border-top: 0;
    background: var(--primary);
    color: rgba(255, 255, 255, 0.92);
    padding: 14px 18px;
    font-family: 'Arboria', sans-serif;
    font-weight: 400;
}

.pricing-table th {
  text-align: left;
}

.pricing-table__plan {
  text-align: right;
}

.pricing-table__value {
  text-align: right;
  white-space: nowrap;
}

.pricing-check {
    width: 17px;
    height: auto;
}

.pricing-check-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-table tbody tr:nth-child(even) td {
  background: rgba(15, 23, 42, 0.015);
}

.pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.pricing-cta .btn {
  border-radius: 12px;
  padding: 10px 18px;
}

/* FAQ */
.faq-section .container {
  max-width: 980px;
}

.faq__head {
  text-align: center;
  margin-bottom: 26px;
}

.faq__title {
  margin: 0;
  font-size: clamp(22px, 2.1vw + 14px, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.faq__list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin-inline: auto;
}

.faq__item {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.faq__q {
  margin: 0;
}

.faq__btn {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.92);
}

.faq__btn:focus-visible {
  outline: 3px solid rgba(58, 39, 155, 0.28);
  outline-offset: -3px;
}

.faq__chev {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  position: relative;
  flex: none;
}

.faq__chev::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(15, 23, 42, 0.60);
  border-bottom: 2px solid rgba(15, 23, 42, 0.60);
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__btn[aria-expanded="true"] .faq__chev::before {
  transform: rotate(225deg);
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__a>p {
  overflow: hidden;
  margin: 0;
  padding: 0 18px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.faq__item[data-open="true"] .faq__a {
  grid-template-rows: 1fr;
}

.faq__item[data-open="true"] .faq__a>p {
  padding-bottom: 18px;
}

@media (max-width: 480px) {
  .faq__btn {
    padding: 16px 14px;
    font-size: 13px;
  }

  .faq__a>p {
    padding-inline: 14px;
    font-size: 12px;
  }

  .faq__item[data-open="true"] .faq__a>p {
    padding-bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .faq__a,
  .faq__chev::before {
    transition: none;
  }
}

/* Timeline */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: fit-content;
  display: grid;
  gap: 18px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(15, 23, 42, 0.10);
}

.timeline__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.timeline__dot {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 14px 24px rgba(58, 39, 155, 0.20);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.timeline__title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 400;
}

.timeline__text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 420px) {
  .timeline::before {
    left: 22px;
  }

  .timeline__item {
    grid-template-columns: 46px 1fr;
  }

  .timeline__dot {
    width: 34px;
    height: 34px;
  }
}

/* Panels */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

@media (min-width: 980px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .reliably-section .split,
  .optimize-section .split {
    grid-template-columns: 390px 1fr;
  }

  .optimize-section .split-right {
    grid-template-columns: 1fr 390px;
  }
}

.panel {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: white;
}

.panel__top {
  background: rgba(58, 39, 155, 0.10);
  padding: 24px;
}

.panel__bottom {
  padding: 14px 16px;
  background: white;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.panel--centered {
  max-width: 780px;
  margin: 16px auto 0;
}

.responsive-img {
  width: 100%;
  height: auto;
}

.reliably-section .panel--centered .panel__top img.responsive-img {
  max-width: 450px;
  margin: 0 auto;
}

img.utilization-img {
  height: 133px;
}

/* Mini asset card */
.mini-asset {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  background: white;
  border: 1px solid rgba(248, 140, 31, 0.18);
  border-radius: 18px;
  padding: 12px;
}

.mini-asset__thumb {
  overflow: hidden;
  min-height: 111px;
}

.mini-asset__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mini-asset__name {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.mini-asset__sub {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.mini-asset__status {
  margin: 8px 0 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid var(--border);
  background: white;
}

.pill--warn {
  color: #9a6b12;
  border-color: rgba(154, 107, 18, 0.25);
  background: rgba(248, 140, 31, 0.10);
}

.pill--ok {
  color: #0f766e;
  border-color: rgba(15, 118, 110, 0.25);
  background: rgba(20, 184, 166, 0.10);
}

.mini-asset__alert {
  margin: 8px 0 0;
  font-size: 10px;
  color: #111827;
}

.mini-asset__alert img {
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: middle;
}

.mini-asset__alert span {
  color: var(--muted);
  font-weight: 600;
}

/* Inspection layout */
.inspection {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
}

@media (min-width: 520px) {
  .inspection {
    grid-template-columns: 1fr 180px;
  }
}

.inspection__table {
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(248, 140, 31, 0.18);
  overflow: hidden;
}

.inspection__table table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}

.inspection__table th,
.inspection__table td {
  padding: 6px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  vertical-align: top;
  font-weight: 600;
}

.inspection__table th {
  font-size: 12px;
  color: #111827;
  background: rgba(15, 23, 42, 0.02);
}

.inspection__table td strong {
  font-weight: 600;
}

.inspection__table tr:last-child td {
  border-bottom: 0;
}

.danger {
  color: #dc2626;
  font-weight: 800;
}

.info {
  color: #2563eb;
  font-weight: 800;
}

.inspection__action {
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(248, 140, 31, 0.18);
  padding: 12px;
  text-align: center;
}

.inspection__title {
  margin: 0 0 4px;
  font-weight: 900;
  font-size: 13px;
}

.inspection__desc {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
}

.inspection__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #eef2f7;
  cursor: pointer;
}

.icon-btn img {
  width: 19px;
  margin: 0 auto;
}

.icon-btn--ok {
  background: #07a355;
  border-color: rgba(7, 163, 85, 0.25);
}

.icon-btn--muted {
  background: #e8eef4;
}

.inspection__chart {
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(248, 140, 31, 0.18);
  overflow: hidden;
  display: grid;
  place-items: center;
}

/* Lifecycle */
.lifecycle {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 780px) {
  .lifecycle {
    grid-template-columns: 1fr 220px;
    align-items: center;
  }
}

.lifecycle__stats {
  background: white;
  border: 1px solid rgba(248, 140, 31, 0.18);
  border-radius: 18px;
  padding: 12px;
}

.lifecycle__title {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 12px;
  color: #111827;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 14px;
  padding: 10px 12px;
  margin-top: 10px;
}

.stat__value {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.stat__unit {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}

/* CTA */
.cta {
  color: white;
  background-image: url(https://610weblab.com/wp-content/uploads/2025/06/contact-bg.webp);
    background-size: cover;
    background-position: center;
}

.cta__inner {
  text-align: center;
  max-width: 820px;
}

.cta__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw + 14px, 40px);
  letter-spacing: -0.02em;
}

.cta__text {
  margin: 0 auto 18px;
  opacity: 0.92;
  font-size: 15px;
  max-width: 62ch;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Footer */
.footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.86);
  padding: 26px 0;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.footer__brand img {
  height: 29px;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: white;
  outline: none;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 16px;
  padding-top: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

@media (min-width: 900px) {
  .footer__top {
    flex-direction: row;
  }
}

.inspection-outer {
  max-width: 533px;
  margin: auto;
}

.inspection__chart img.responsive-img {
  height: 133px;
}

.lifecycle .lifecycle__chart img.responsive-img {
  max-height: 169px;
  border-radius: 16px;
}

.optimize-section .split-right article.panel:last-child .panel__top img.responsive-img {
  height: 169px;
  border-radius: 16px;
}

/* start responsive css */
/* @media (max-width: 1024px) { */
  /* :root { */
    /* --container: 1080px; */
  /* } */
/* } */

@media (max-width: 768px) {
  /* .container { */
    /* width: min(var(--container), calc(100% - 32px)); */
  /* } */

  body.is-nav-open {
    overflow: hidden;
  }

  /* .hero { */
    /* padding: 72px 0 44px; */
  /* } */

  /* .cta { */
    /* padding: 64px 0; */
  /* } */

  .value-card,
  .feature,
  .step-card,
  .req {
    padding: 18px;
  }

  .panel__top {
    padding: 18px;
  }
}

@media (max-width: 767px) {
  /* .container { */
    /* width: min(var(--container), calc(100% - 24px)); */
  /* } */
	.pricing-table tr td {
		font-size: 13px;
	}
	.pricing-table thead tr th {
		font-size: 15px;
	}
  /* TIMM-style fullscreen mobile menu (animated; avoid display:none so transitions work) */
  .nav__menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 999;
    padding: 22px 18px 24px;
    gap: 22px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px) scale(0.985);
    transition:
      opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.32s;
  }

  .nav__menu[data-open="true"] {
    display: flex;
    position: fixed;
    inset: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition:
      opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s;
  }

  @media (prefers-reduced-motion: reduce) {

    .nav__menu,
    .nav__menu[data-open="true"] {
      transform: none;
      transition: opacity 0.15s ease, visibility 0s linear 0.15s;
    }

    .nav__menu[data-open="true"] {
      transition: opacity 0.15s ease, visibility 0s;
    }
  }

  .nav__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: white;
    color: var(--fg);
    font-size: 26px;
    line-height: 1;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
  }

  .nav__links {
    gap: 18px;
    align-items: center;
  }

  .nav__link {
    font-size: 16px;
    color: rgba(15, 23, 42, 0.82);
    padding: 10px 12px;
  }

  .nav__cta {
    width: min(420px, 100%);
    gap: 12px;
    margin-top: 10px;
  }

  .nav__cta .btn {
    width: 100%;
    min-width: 0;
  }

  .nav {
    min-height: 72px;
  }

  /* .hero { */
    /* padding: 64px 0 40px; */
  /* } */

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__actions {
    gap: 10px;
  }

  .hero__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .mini-asset {
    grid-template-columns: 1fr;
  }

  .mini-asset__thumb {
    min-height: 0;
  }
  .inspection__chart img.responsive-img{
    height: auto;
  }
}

@media (max-width:679px){
	.grid .step-card__media img {
		height: auto;
		width:100%;
	}
}

@media (max-width: 360px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    max-width: 160px;
  }
}