:root {
    --white: #FFFFFF;
    --bg2: #F7F8FC;
    --surface: #0a1628;
    --red: #ff3d00;
    --red-l: rgba(255, 61, 0, 0.08);
    --red-m: rgba(255, 61, 0, 0.15);
    --teal: #00C9A7;
    --teal-l: rgba(0, 201, 167, 0.08);
    --navy: #0A1628;
    --navy2: #1a2d4a;
    --text: #0A1628;
    --text2: #4A5568;
    --muted: #8896A4;
    --border: #E2E8F0;
    --success: #10B981;
    --warn: #F59E0B;
    --display: 'Poppins', sans-serif;
    --body: 'Poppins', sans-serif;
    --mono: 'Poppins', monospace;
    --r12: 12px;
    --r8: 8px;
    --rpill: 100px;
    --s1: 0 1px 3px rgba(10, 22, 40, .06), 0 1px 2px rgba(10, 22, 40, .04);
    --s2: 0 4px 16px rgba(10, 22, 40, .08), 0 2px 6px rgba(10, 22, 40, .05);
    --s3: 0 12px 40px rgba(10, 22, 40, .10), 0 4px 12px rgba(10, 22, 40, .06);
    --s4: 0 24px 64px rgba(10, 22, 40, .12), 0 8px 24px rgba(10, 22, 40, .08);
}

/*New Code for nav fix*/
nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: var(--body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    cursor: pointer;
    font-family: var(--body);
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.sec {
    padding: 96px 0;
}

.sec-sm {
    padding: 64px 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: poppins;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--rpill);
}

.tag-r {
    background: var(--red-l);
    color: var(--red);
    border: 1px solid rgba(255, 61, 0, .2);
}

.tag-t {
    background: var(--teal-l);
    color: var(--teal);
    border: 1px solid rgba(0, 201, 167, .2);
}

.eyebrow {
    font-family: poppins;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.h1 {
    font-family: poppins;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.2;
    color: #000000;
}

.h2 {
    font-family: poppins;
    font-weight: 600;
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.08;
    color: #000000;
}

.h3 {
    font-family: poppins;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
}

.er {
    color: var(--red);
}

.et {
    color: var(--teal);
}

.lead {
    font-size: 18px;
    color: var(--text2);
    line-height: 1.75;
}

.tc {
    text-align: center;
}

.tc .eyebrow {
    justify-content: center;
}

.tc .eyebrow::before {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: poppins;
    font-weight: 600;
    border-radius: var(--r8);
    transition: all .2s ease;
    border: none;
    white-space: nowrap;
    cursor: pointer;
}

.btn-xl {
    font-size: 17px;
    padding: 14px 28px;
}

.demo-btn{
  font-size:17px;
  padding:12px 28px;
  background:#000;
  color:#fff;
  transition:all .3s ease;
}

.demo-btn:hover{
  background:#fff;
  transform:translateY(-2px);
  color: #000;
  box-shadow:0 6px 18px rgba(0,0,0,.15);
}

.btn-lg {
    font-size: 15px;
    padding: 14px 28px;
    width: fit-content
}

.btn-md {
    font-size: 13px;
    padding: 12px 24px;
}

.btn-p {
    background: #000000;
    color: #fff;
}

.btn-p:hover {
    background: #e53600;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 61, 0, .4);
}

.btn-s {
    background: var(--white);
    color: #000000;
    border: 1.5px solid var(--border);
    box-shadow: var(--s1);
}

.btn-s:hover {
    border-color: #000000;
    transform: translateY(-1px);
    box-shadow: var(--s2);
}

.btn-n {
    background: #000000;
    color: #fff;
}

.btn-n:hover {
    background: var(--navy2);
    transform: translateY(-1px);
}

/* ANNOUNCE */
.ann {
    background: #000000;
    padding: 10px 0;
    text-align: center;
}

.ann-in {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
}

.ann-in span {
    color: rgba(255, 255, 255, .5);
}

.ann-in strong {
    color: #fff;
}

.ann-badge {
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    font-family: poppins;
    padding: 3px 10px;
    border-radius: var(--rpill);
}

.ann-link {
    color: var(--teal);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--s1);
}

.nav-in {
    max-width: 1200px;
    margin: 0 auto;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    width: 112px;
    height: 30px;
    object-fit: contain;
}

.nav-lm {
    width: 45px;
    height: 45px;
    background: #f7f7f7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-lm img {
    width: 70%;
}

.nav-lm span {
    font-family: poppins;
    font-weight: 600;
    font-size: 18px;
    color: var(--red);
}

.nav-lt {
    font-family: poppins;
    font-weight: 400;
    font-size: 23px;
    color: #000000;
}

.nav-lt-ftr {
    font-family: poppins;
    font-weight: 400;
    font-size: 24px;
    color: #000000;
}

.nav-lt em {
    color: var(--red);
    font-style: normal;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a,
.nav-db-btn {
    font-family: poppins;
    font-size: 14px;
    font-weight: 600;
    color: var(--text2);
    padding: 7px 14px;
    border-radius: 6px;
    transition: all .2s;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover,
.nav-db-btn:hover {
    color: #ff3d00;
    background: #fff7f5;
}

.nav-mega a {
    margin: 5px 0;
    border-bottom: 1px solid #f1f1f1;
}

.nav-dd {
    position: relative;
}

.nav-dd svg {
    transition: transform .2s;
}

.nav-dd:hover .nav-db-btn svg {
    transform: rotate(180deg);
}

.nav-mega {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r12);
    box-shadow: var(--s4);
    padding: 8px;
    width: 500px;
    opacity: 0;
    visibility: hidden;
    transition: all .2s;
}

.nav-dd:hover .nav-mega {
    opacity: 1;
    visibility: visible;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: background .15s;
}

.mega-item:hover {
    background: var(--bg2);
}

.mega-ic {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.mega-title {
    font-family: poppins;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 3px;
}

.mega-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
    font-weight: 400;
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* HERO */
.hero {
    padding: 80px 0 60px;
    background: #FFF9EE;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 61, 0, .05) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 201, 167, .04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-l);
    border: 1px solid rgba(255, 61, 0, .2);
    border-radius: var(--rpill);
    padding: 6px 14px 6px 8px;
    margin-bottom: 24px;
    animation: fu .5s ease both;
}

.hb-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: pr 2s infinite;
}

@keyframes pr {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 61, 0, .3);
    }

    50% {
        opacity: .7;
        box-shadow: 0 0 0 6px rgba(255, 61, 0, 0);
    }
}

.hero-badge span {
    font-family: poppins;
    font-size: 11px;
    font-weight: 500;
    color: var(--red);
}

.hero-left .h1 {
    animation: fu .5s .1s ease both;
}

.hero-sub {
    font-size: 18px;
    color: var(--text2);
    line-height: 1.75;
    max-width: 520px;
    margin: 20px 0 36px;
    animation: fu .5s .2s ease both;
}

.hero-acts {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fu .5s .3s ease both;
}

.cta-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
    animation: fu .5s .4s ease both;
}

.t-avs {
    display: flex;
}

.t-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -8px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.t-av:first-child {
    margin-left: 0;
}

.t-txt {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.4;
}

.t-txt strong {
    color: #000000;
}

.hero-right {
    animation: fu .6s .15s ease both;
}

.db-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--s4);
    overflow: hidden;
}

.db-bar {
    background: #000000;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.db-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.db-title {
    font-family: poppins;
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
    margin-left: 8px;
}

.db-live {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: poppins;
    font-size: 11px;
    color: var(--teal);
}

.db-ld {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    animation: pr 1.5s infinite;
}

.db-body {
    padding: 16px;
}

.a-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 8px;
    background: var(--white);
    transition: box-shadow .2s;
}

.a-card:hover {
    box-shadow: var(--s2);
}

.a-ic {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.a-info {
    flex: 1;
    min-width: 0;
}

.a-name {
    font-family: poppins;
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.a-det {
    font-family: poppins;
    font-size: 11px;
    color: var(--muted);
}

.sp {
    font-family: poppins;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: var(--rpill);
    flex-shrink: 0;
}

.sl {
    background: rgba(16, 185, 129, .1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, .25);
}

.sd {
    background: rgba(0, 201, 167, .1);
    color: var(--teal);
    border: 1px solid rgba(0, 201, 167, .25);
}

.sq {
    background: var(--surface);
    color: var(--muted);
    border: 1px solid var(--border);
}

.db-met {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
}

.dm {
    padding: 14px;
    text-align: center;
}

.dm:not(:last-child) {
    border-right: 1px solid var(--border);
}

.dm-v {
    font-family: poppins;
    font-weight: 800;
    font-size: 19px;
    color: #000000;
}

.dm-l {
    font-family: poppins;
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
}

/* MODEL STRIP */
.mstrip {
    background: #000000;
    padding: 18px 0;
    overflow: hidden;
}

.mtrack {
    display: flex;
    align-items: center;
    animation: mq 22s linear infinite;
}

@keyframes mq {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.mitem {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, .07);
    white-space: nowrap;
}

.mitem span {
    font-family: poppins;
    font-size: 13px;
    font-weight: 600;
    color: #e7e7e7;
}

.mdot {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
}

/* STAT STRIP */
.sstrip {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.sstrip-in {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.sitem {
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.sitem:not(:last-child) {
    border-right: 1px solid var(--border);
}

.sico {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.sv {
    font-family: poppins;
    font-weight: 800;
    font-size: 26px;
    color: #000000;
    line-height: 1;
}

.sl2 {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
    font-family: poppins;
}

/* LOGO BAR */
.lbar {
    width: 100%;
    /* padding: 32px 0; */
    overflow: hidden;
}

.lbar-lbl {
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #888;
    padding-top: 32px;
    margin-bottom: 24px;
}

/* Mask edges for fade-out effect */
.lrow {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
}

/* The scrolling track */
.marquee-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* Each logo slot */
.llogo {
    flex-shrink: 0;
    width: 110px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.llogo img {
    max-width: 110px;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.llogo img:hover {
    filter: grayscale(0%) opacity(1);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* -50% = scroll exactly one set, then loop */
}

/* Mobile: slow it down slightly */
@media (max-width: 768px) {
    .marquee-track {
        gap: 32px;
        animation-duration: 20s;
    }

    .llogo {
        width: 80px;
        height: 50px;
    }

    .llogo img {
        max-width: 80px;
        max-height: 44px;
    }
}

/* PLATFORMS */
.plat-g {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.pc {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r12);
    padding: 36px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
    display: block;
}

.pc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
}

.pc:hover {
    transform: translateY(-4px);
    box-shadow: var(--s3);
    border-color: transparent;
}

.pc-ico {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.pc-num {
    font-family: poppins;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 10px;
}

.pc-title {
    font-family: poppins;
    font-weight: 800;
    font-size: 20px;
    color: #000000;
    margin-bottom: 10px;
}

.pc-desc {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: 18px;
}

.pc-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 22px;
}

.pc-feats li {
    font-size: 13px;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pc-feats li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.pc-link {
    font-family: poppins;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap .2s;
}

.pc:hover .pc-link {
    gap: 9px;
}

/* ABOUT */
.about-sec {
    background: #000000;
    padding: 80px 0;
}

.about-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-txt {
    font-size: 16px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.8;
}

.about-txt strong {
    color: #fff;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ast {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r12);
    padding: 24px;
}

.ast-v {
    font-family: poppins;
    font-weight: 800;
    font-size: 36px;
    color: #fff;
}

.ast-v em {
    color: var(--red);
    font-style: normal;
}

.ast-l {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    margin-top: 4px;
}

.about-sec .btn-p {
    background: var(--red);
    color: #fff;
    border: 1px solid var(--red);
    transition: all 0.3s ease;
}

.about-sec .btn-p:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

/* COMPARISON */
.cmp-sec {
    background: var(--bg2);
}

.cmp-t {
    width: 100%;
    border-collapse: collapse;
    margin-top: 48px;
    border-radius: var(--r12);
    overflow: hidden;
    box-shadow: var(--s2);
}

.cmp-t th {
    padding: 16px 20px;
    font-family: poppins;
    font-weight: 600;
    font-size: 14px;
}

.cmp-t th:first-child {
    background: #0000000f;
    color: #000000;
    text-align: left;
    width: 32%;
}

.cmp-t th:nth-child(2) {
    background: #0000000f;
    color: var(--text2);
    text-align: center;
}

.cmp-t th:nth-child(3) {
    background: #ff3d0029;
    color: #fff;
    text-align: center;
}

.cmp-t td {
    padding: 20px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.cmp-t td:first-child {
    font-weight: 600;
    color: #000000;
    background: var(--white);
}

.cmp-t td:nth-child(2) {
    color: var(--muted);
    text-align: center;
    background: var(--white);
}

.cmp-t td:nth-child(3) {
    color: #000000;
    font-weight: 500;
    text-align: center;
    background: #ff3d000f;
}

.cmp-t tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {

    .cmp-t,
    .cmp-t thead,
    .cmp-t tbody,
    .cmp-t th,
    .cmp-t td,
    .cmp-t tr {
        display: block;
        width: 100%;
    }

    .cmp-t thead {
        display: none;
    }

    .cmp-t {
        border: none;
        box-shadow: none;
        margin-top: 30px;
    }

    .cmp-t tr {
        margin-bottom: 20px;
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--s2);
        background: #fff;
    }

    .cmp-t td {
        display: block;
        text-align: left !important;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        position: relative;
    }

    .cmp-t td:last-child {
        border-bottom: none;
    }

    /* labels */
    .cmp-t td:nth-child(1)::before {
        content: "Capability";
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: var(--muted);
        margin-bottom: 6px;
    }

    .cmp-t td:nth-child(2)::before {
        content: "Traditional Approach";
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: var(--muted);
        margin-bottom: 6px;
    }

    .cmp-t td:nth-child(3)::before {
        content: "✦ Meii AI Platform";
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: #ff3d00;
        margin-bottom: 6px;
    }

    .cmp-t td:first-child,
    .cmp-t td:nth-child(2),
    .cmp-t td:nth-child(3) {
        background: #fff;
    }
}

/* HOW IT WORKS */
.steps-g {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    border: 1px solid var(--border);
    border-radius: var(--r12);
    overflow: hidden;
}

.step {
    padding: 36px 28px;
    position: relative;
    background: var(--white);
    transition: background .2s;
    list-style: none;
}

.step:hover {
    background: var(--bg2);
}

.step:not(:last-child) {
    border-right: 1px solid var(--border);
}

.step-n {
    font-family: poppins;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 16px;
}

.step-ic {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.step-title {
    font-family: poppins;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
}

.step-arr {
    position: absolute;
    top: 36px;
    right: -12px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--muted);
    z-index: 2;
}

.step:last-child .step-arr {
    display: none;
}

/* ROI */
.roi-sec {
    background: linear-gradient(135deg, var(--bg2) 0%, rgba(0, 201, 167, .04) 50%, var(--bg2) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.roi-g {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.roi-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.roi-c {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r12);
    padding: 60px 80px;
    text-align: center;
    box-shadow: var(--s1);
    transition: all .25s;
}

.roi-c:hover {
    box-shadow: var(--s2);
    transform: translateY(-2px);
}

.roi-n {
    font-family: poppins;
    font-weight: 600;
    font-size: 40px;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
    color: #0a1628;
}

.roi-l {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.4;
}

/* AUDIENCE */
.aud-g {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.ac {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r12);
    padding: 28px;
    transition: all .25s;
}

.ac:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: var(--s3);
}

.ac-ico {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
}

.ac-type {
    font-family: poppins;
    font-size: 10px;
    font-weight: 500;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ac-title {
    font-family: poppins;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    margin-bottom: 8px;
}

.ac-desc {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
}

/* INTEGRATIONS */
.int-sec {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.int-g {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 44px;
}

.int-c {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r12);
    padding: 20px 12px;
    text-align: center;
    transition: all .2s;
}

.int-c:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: var(--s2);
}

.int-ico {
    font-size: 26px;
    margin-bottom: 8px;
    display: block;
}

.int-n {
    font-size: 11px;
    font-weight: 600;
    color: var(--text2);
    font-family: poppins;
}

/* TESTIMONIALS */
.testi-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.tc2 {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r12);
    padding: 32px;
    transition: all .25s;
}

.tc2:hover {
    border-color: var(--red);
    box-shadow: var(--s3);
}


.t-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.t-stars span {
    color: #f5b301;
    font-size: 18px;
    line-height: 1;
}

.t-av2 {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
}

.t-av2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t-q {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}

.t-foot {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-av2 {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.t-name {
    font-family: poppins;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.t-role {
    font-family: poppins;
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

/* ── PRICING SECTION ── */
.price-sec {
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

/* ── CONTROLS ROW ── */
.price-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 36px 0 44px;
    flex-wrap: wrap;
}

/* Currency selector */
.currency-selector {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--rpill);
    padding: 4px;
    box-shadow: var(--s1);
}

.curr-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: var(--rpill);
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: poppins;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
    transition: all .2s;
    white-space: nowrap;
}

.curr-btn .flag {
    font-size: 16px;
    line-height: 1;
}

.curr-btn.active {
    background: #000000;
    color: #fff;
    box-shadow: var(--s1);
}

.curr-btn:not(.active):hover {
    background: var(--bg2);
    color: #000;
}

/* Billing toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ptl {
    font-family: poppins;
    font-size: 13px;
    color: var(--text2);
    font-weight: 500;
}

.ptl.active-label {
    color: #000;
    font-weight: 600;
}

.ptrack {
    width: 48px;
    height: 26px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--rpill);
    cursor: pointer;
    position: relative;
    transition: background .2s;
    flex-shrink: 0;
}

.ptrack.on {
    background: var(--red);
}

.pknob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s;
    box-shadow: var(--s1);
}

.ptrack.on .pknob {
    transform: translateX(22px);
}

/* Divider */
.ctrl-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* ── PRICING GRID ── */
.price-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
    transition: opacity .25s ease;
}

.price-g.fading {
    opacity: 0;
}

.pcard {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r12);
    padding: 36px;
    position: relative;
    transition: all .25s;
}

.pcard:hover {
    box-shadow: var(--s3);
}

.pcard.feat {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(255, 61, 0, .06), var(--s3);
    transform: scale(1.03);
}

.ppop {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-family: poppins;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: var(--rpill);
    white-space: nowrap;
}

.ptier {
    font-family: poppins;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
    letter-spacing: .08em;
}

/* Price display */
.price-display {
    min-height: 68px;
    margin-bottom: 6px;
}

.pamt {
    font-family: poppins;
    font-weight: 800;
    font-size: 48px;
    color: #000000;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.pamt-symbol {
    font-size: 24px;
    font-weight: 700;
    margin-top: 6px;
    color: var(--text2);
}

.pamt-custom {
    font-family: poppins;
    font-weight: 800;
    font-size: 40px;
    color: #000000;
    line-height: 1;
    padding-top: 8px;
}

/* Description + period */
.pper {
    font-family: poppins;
    margin-bottom: 20px;
    line-height: 1.55;
}

.pper-desc {
    display: block;
    font-size: 13px;
    color: var(--text2);
    font-style: italic;
    margin-bottom: 5px;
}

.pper-period {
    display: block;
    font-size: 11px;
    color: var(--muted);
}

/* Skeleton */
.price-skeleton {
    animation: shimmer 1.5s infinite;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    border-radius: 6px;
    height: 48px;
    width: 140px;
    margin-bottom: 6px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Features */
.pfeats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.pfeats li {
    font-size: 14px;
    color: var(--text2);
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.4;
}

.pfeats li::before {
    content: '✓';
    color: var(--success);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
}

.pfeats li.feat-hidden {
    display: none;
}

/* Show more toggle */
.feat-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: poppins;
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 0;
    margin-bottom: 22px;
    transition: opacity .15s;
    line-height: 1;
}

.feat-toggle:hover {
    opacity: .7;
}

.feat-toggle svg {
    flex-shrink: 0;
    transition: transform .2s;
}

.feat-toggle.expanded svg {
    transform: rotate(180deg);
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .price-g {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pcard.feat {
        transform: none;
    }

    .price-controls {
        gap: 16px;
    }
}

@media(max-width:640px) {
    .curr-btn {
        padding: 7px 12px;
        font-size: 12px;
    }

    .ctrl-divider {
        display: none;
    }

    .price-controls {
        flex-direction: column;
        gap: 14px;
    }
}

/* FAQ */
.faq-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 48px;
}

.faq-i {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r12);
    padding: 24px;
    cursor: pointer;
    transition: all .2s;
}

.faq-i:hover {
    border-color: var(--red);
    box-shadow: var(--s2);
}

.faq-q {
    font-family: poppins;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.faq-qi {
    color: var(--red);
    font-size: 18px;
    flex-shrink: 0;
    font-weight: 400;
    line-height: 1;
}

.faq-a {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
    margin-top: 10px;
    display: none;
}

.faq-i.open .faq-a {
    display: block;
}

/* CTA */
.cta-sec {
    background: #000000;
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 61, 0, .1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-in {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.cta-ey {
    font-family: poppins;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
}

.cta-h2 {
    font-family: poppins;
    font-weight: 800;
    font-size: clamp(30px, 4vw, 50px);
    color: #fff;
    line-height: 1.05;
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto 16px;
}

.cta-inp {
    flex: 1;
    font-family: var(--body);
    font-size: 15px;
    color: #000000;
    background: var(--white);
    border: none;
    border-radius: var(--r8);
    padding: 15px 20px;
    outline: none;
}

.cta-inp::placeholder {
    color: var(--muted);
}

.cta-sub-btn {
    font-family: poppins;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    background: var(--red);
    border: none;
    padding: 15px 26px;
    border-radius: var(--r8);
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
    box-shadow: 0 4px 20px rgba(255, 61, 0, .4);
}

.cta-sub-btn:hover {
    background: #e53600;
    transform: translateY(-1px);
}

.cta-fine {
    font-family: poppins;
    font-size: 11px;
    color: rgba(255, 255, 255, .28);
}

.cta-contact {
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, .38);
}

.cta-contact a {
    color: var(--teal);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* FOOTER */

footer {
    background: #ffeee8;
    padding: 60px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-logo {
    width: 112px;
    height: 30px;
    object-fit: contain;
}

.foot-g {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 20px;
    margin-bottom: 48px;
}

.foot-brand p {
    font-size: 14px;
    color: #000000;
    line-height: 1.7;
    margin-top: 14px;
    max-width: 260px;
}

.foot-h {
    font-family: poppins;
    font-size: 11px;
    text-transform: uppercase;
    color: #ff3d00;
    margin-bottom: 16px;
    font-weight: 600;
}

.foot-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding-left: 0px;
}

.foot-links a {
    font-size: 14px;
    color: #000000;
    transition: color .2s;
}

.foot-links a:hover {
    color: #ff3d00;
}

.foot-offices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.off-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #000000;
    line-height: 1.5;
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.foot-copy {
    font-family: poppins;
    font-size: 12px;
    color: #000000;
}

.foot-certs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cert-c {
    font-family: poppins;
    font-size: 11px;
    color: #000000;
    border: 1px solid #ccc;
    padding: 4px 10px;
    border-radius: 4px;
}

.foot-soc {
    display: flex;
    gap: 8px;
}

.soc-b {
    padding: 6px 15px;
    background: rgba(0, 0, 0, 0.6);
    /* darker */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.soc-b:hover {
    background: #fff;
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--paper2);
}

::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 2px;
}

/* ANIM */
@keyframes fu {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fu {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.fu.vis {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .wrap {
        padding: 0 24px;
    }

    .hero-g {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-right {
        order: -1;
    }

    .plat-g {
        grid-template-columns: 1fr;
    }

    .about-g {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .roi-g {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .aud-g {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .testi-g {
        grid-template-columns: 1fr;
    }

    .price-g {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pcard.feat {
        transform: none;
    }

    .faq-g {
        grid-template-columns: 1fr;
    }

    .steps-g {
        grid-template-columns: repeat(2, 1fr);
    }

    .step:nth-child(2) {
        border-right: none;
    }

    .step:nth-child(1),
    .step:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .foot-g {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .sstrip-in {
        grid-template-columns: repeat(2, 1fr);
    }

    .sitem:nth-child(2) {
        border-right: none;
    }

    .sitem:nth-child(1),
    .sitem:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    nav .nav-links {
        display: none;
    }

    .cta-form {
        flex-direction: column;
    }
}

@media(max-width:640px) {
    .sec {
        padding: 64px 0;
    }

    .aud-g {
        grid-template-columns: 1fr;
    }

    .int-g {
        grid-template-columns: repeat(2, 1fr);
    }

    .ast {
        padding: 10px;
    }

    .roi-c {
        padding: 10px 18px;
    }

    .roi-n {
        font-size: 30px;
    }
}


/*Responsive chnage */
@media (max-width: 441px) {
    .foot-g {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sec {
        padding: 48px 0;
    }

    .h1 {
        font-size: 30px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .lead {
        font-size: 12px;
    }

    .ann-in {
        font-size: 8px;
    }

    .btn-xl {
        font-size: 14px;
        padding: 13px 5px;
    }

    .pcard {
        padding: 22px;
    }

    .faq-q {
        font-size: 12px;
    }

    .cta-h2 {
        font-size: 20px;
    }

    .cta-sub {
        font-size: 12px;
    }

    .nav-logo img {
        width: 100px;
        height: 65px;
    }

    .btn-md {
        font-size: 9px;
        padding: 5px 8px;
    }

    .sstrip-in {
        grid-template-columns: repeat(2, 1fr);
    }

    .sitem {
        padding: 20px 15px;
        gap: 10px;
    }

    .btn-lg {
        font-size: 12px;
        padding: 10px 12px;
    }
}

@media (max-width: 767px) {
    .steps-g {
        grid-template-columns: repeat(1, 1fr);
    }

    .sstrip-in {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For NAv */
/* HAMBURGER */
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: all 0.3s ease;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE */
@media (max-width: 767px) {
    .nav-in {
        height: auto;
        min-height: 68px;
        padding: 14px 18px;
        flex-wrap: wrap;
        gap: 0;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: #fff;
        margin-top: 14px;
        padding: 10px 0;
        border-top: 1px solid #eee;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        list-style: none;
    }

    .nav-links a,
    .nav-db-btn {
        width: 100%;
        padding: 14px 4px;
        font-size: 15px;
        font-weight: 500;
        color: var(--navy);
        border-bottom: 1px solid #f4f4f4;
        justify-content: space-between;
    }

    .nav-r {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 14px;
        padding-bottom: 10px;
    }

    .nav-r.show {
        display: flex;
    }

    .nav-r .btn {
        width: 100%;
        justify-content: center;
        border-radius: 10px;
        padding: 12px;
        font-size: 14px;
    }

    .nav-mega {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 8px 0 8px 10px;
        display: none;
        opacity: 1;
        visibility: visible;
        background: #fafafa;
        border-radius: 8px;
        margin-top: 6px;
    }

    .nav-dd.active .nav-mega {
        display: block;
    }

    .mega-item {
        padding: 10px;
        border-radius: 8px;
    }

}

.nav-links a:hover,
.nav-db-btn:hover {
    background: #fafafa;
    color: #ff3d00;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
    }

    .hero-left {
        order: 1;
        width: 100%;
    }

    .hero-right {
        order: 2;
        width: 100%;
    }
}

.foot-copy a {
    color: inherit;
    text-decoration: none;
}

.foot-copy a:hover {
    text-decoration: underline;
}


/* New additions for better mobile experience as per bug sheet */
@media (max-width: 441px) {
    .mega-desc {
        font-size: 13px;
    }

    .h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    .db-body {
        padding: 8px;
    }

    .sico {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .demo-btn {
        padding: 7px 14px;
    }

    .hiw-step-num {
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin-bottom: 6px;

    }

    .hiw-steps {
        gap: 15px;
    }

    .hiw-steps {
        margin-top: 25px;
    }
}

@media (max-width: 400px) {
    .sl2 {
        font-size: 8px;
    }
}