: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: #D61C5B;
    --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;
    color: var(--fg);
    background: var(--bg);
    line-height: 1.6;
}

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

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

h2+p {
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
}

.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 {
    background: var(--ssss, linear-gradient(90deg, #d61c5b 0, #d72158 19.25%, #db2e4f 40.98%, #e14540 63.85%, #e34b3c 69.08%, #e5513a 78.03%, #e96433 90.49%, #ee762d 99.98%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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


.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);
}

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

.section__head {
    text-align: center;
    margin-bottom: 40px;
}

.sec_title+.section__subtitle {
    margin-top: 10px;
}

/* Hero */
.hero {
    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__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: 500;
}

.hero__title {
    color: #000;
}

.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__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: linear-gradient(to right, #D61C5B, #ED722E);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.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;
    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__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 tr {
    background: linear-gradient(to right, #D61C5B, #ED722E);
}

.pricing-table thead th {
    border-top: 0;
    color: rgba(255, 255, 255, 0.92);
    padding: 14px 18px;
    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;
}

.cta__actions .theme_btn::after {
    border-width: 2px;
    border-color: #fff !important;
}

.cta__actions a.theme_btn {
    background-color: #fff;
    color: #222;
}



@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: linear-gradient(to right, #D61C5B, #ED722E);
    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: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.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: 768px) {

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

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

    .panel__top {
        padding: 18px;
    }
}

@media (max-width: 767px) {
    .pricing-table tr td {
        font-size: 13px;
    }

    .pricing-table thead tr th {
        font-size: 15px;
    }

    .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;
    }
}