:root {
    /* ---- Command-center dark palette ---- */
    --bg: #08080F;
    --bg-soft: #0C0C16;
    --surface: #12121D;
    --surface-2: #171725;
    --line: rgba(255, 255, 255, .08);
    --line-strong: rgba(255, 255, 255, .16);

    --violet: #8B7CF6;
    --violet-dim: #5B4FC4;
    --violet-soft: rgba(139, 124, 246, .14);

    --teal: #31E0B0;
    --teal-dim: #1D9E75;
    --teal-soft: rgba(49, 224, 176, .14);

    --ink: #F4F3FB;
    --muted: #9D9AB8;
    --muted-2: #6C6987;

    --radius: 16px;
    --glow: 0 20px 60px -20px rgba(139, 124, 246, .35);
    --glow-teal: 0 20px 60px -20px rgba(49, 224, 176, .3);

    --disp: 'Space Grotesk', sans-serif;
    --body: 'Poppins', sans-serif;
    --mono: 'IBM Plex Mono', monospace;

    --ease: cubic-bezier(.16, .84, .44, 1);
}

.inner-products {
    font-family: var(--body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

.inner-products::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 30px 30px;
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 75%);
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 75%);
}

.inner-products img {
    max-width: 100%;
    display: block;
}

.inner-products a {
    text-decoration: none;
    color: inherit;
}

.inner-products ul {
    list-style: none;
}

.inner-products .wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.inner-products h1,
.inner-products h2,
.inner-products h3,
.inner-products h4 {
    font-family: var(--disp);
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
}

.inner-products .eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 9px;
}

.inner-products .eyebrow::before {
    content: "";
    width: 20px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--teal), transparent);
    display: inline-block;
}

.inner-products .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--disp);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 999px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s var(--ease);
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.inner-products .btn-primary {
    background: linear-gradient(120deg, var(--violet), var(--teal));
    background-size: 160% 160%;
    background-position: 0% 50%;
    color: #0A0A12;
    box-shadow: 0 14px 34px -14px rgba(139, 124, 246, .55);
}

.inner-products .btn-primary:hover {
    transform: translateY(-2px);
    background-position: 100% 50%;
    box-shadow: 0 20px 44px -14px rgba(49, 224, 176, .55);
}

.inner-products .btn-ghost {
    background: rgba(255, 255, 255, .02);
    color: var(--ink);
    border: 1.5px solid var(--line-strong);
}

.inner-products .btn-ghost:hover {
    border-color: var(--violet);
    color: var(--violet);
    transform: translateY(-2px);
}

.inner-products a:focus-visible,
.inner-products button:focus-visible,
.inner-products .faq-q:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
    border-radius: 6px;
}

.inner-products section {
    padding: 96px 0;
    position: relative;
}

.inner-products .section-head {
    max-width: 640px;
    margin-bottom: 52px;
}

.inner-products .section-head h2 {
    font-size: clamp(28px, 3.4vw, 38px);
    margin-top: 14px;
}

.inner-products .section-head p {
    color: var(--muted);
    margin-top: 14px;
    font-size: 16px;
}

.inner-products .center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- reveal-on-scroll ---------- */
.inner-products .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.inner-products .reveal.in-view {
    opacity: 1;
    transform: none;
}

.inner-products .stagger .reveal:nth-child(1) {
    transition-delay: .03s;
}

.inner-products .stagger .reveal:nth-child(2) {
    transition-delay: .1s;
}

.inner-products .stagger .reveal:nth-child(3) {
    transition-delay: .17s;
}

.inner-products .stagger .reveal:nth-child(4) {
    transition-delay: .24s;
}

.inner-products .stagger .reveal:nth-child(5) {
    transition-delay: .31s;
}

.inner-products .stagger .reveal:nth-child(6) {
    transition-delay: .38s;
}

/* ---------- HERO ---------- */
.inner-products .hero {
    padding: 84px 0 110px;
    overflow: hidden;
    position: relative;
    margin-top: 70px;
}

.inner-products .hero .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: .55;
    z-index: 0;
}

.inner-products .hero .blob-1 {
    width: 520px;
    height: 520px;
    top: -220px;
    right: -120px;
    background: radial-gradient(circle, var(--violet), transparent 70%);
    animation: drift1 16s ease-in-out infinite alternate;
}

.inner-products .hero .blob-2 {
    width: 420px;
    height: 420px;
    bottom: -200px;
    left: -140px;
    background: radial-gradient(circle, var(--teal), transparent 70%);
    animation: drift2 20s ease-in-out infinite alternate;
}

@keyframes drift1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-40px, 30px) scale(1.1);
    }
}

@keyframes drift2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -20px) scale(1.15);
    }
}

.inner-products .hero .wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}

.inner-products .hero-text>* {
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp .8s var(--ease) forwards;
}

.inner-products .hero-text .eyebrow {
    animation-delay: .05s;
}

.inner-products .hero-text h1 {
    animation-delay: .15s;
}

.inner-products .hero-text p.lead {
    animation-delay: .28s;
}

.inner-products .hero-text .cta-row {
    animation-delay: .4s;
}

.inner-products .hero-text .trustline {
    animation-delay: .52s;
}

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

.inner-products .hero h1 {
    font-size: clamp(34px, 4.6vw, 52px);
    margin-top: 18px;
    letter-spacing: -.01em;
}

.inner-products .hero h1 span {
    background: linear-gradient(120deg, var(--violet), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.inner-products .hero p.lead {
    font-size: 17.5px;
    color: var(--muted);
    margin-top: 20px;
    max-width: 520px;
}

.inner-products .hero .cta-row {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.inner-products .hero .trustline {
    margin-top: 34px;
    font-size: 13px;
    color: var(--muted-2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.inner-products .hero .trustline .dots {
    display: flex;
}

.inner-products .hero .trustline .dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--teal));
    border: 2px solid var(--bg);
    margin-left: -4px;
}

/* Signature visual: contract/workflow card stack with scan sweep */
.inner-products .visual {
    position: relative;
    height: 440px;
    opacity: 0;
    transform: translateY(24px) scale(.97);
    animation: fadeUp .9s var(--ease) forwards;
    animation-delay: .35s;
}

.inner-products .visual-frame {
    position: absolute;
    inset: 0 -6% 0 -2%;
    border-radius: 22px;
    overflow: hidden;
    pointer-events: none;
}

.inner-products .scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(139, 124, 246, .16) 45%, rgba(49, 224, 176, .22) 55%, transparent);
    mix-blend-mode: screen;
    animation: scan 5.5s ease-in-out infinite;
}

@keyframes scan {
    0% {
        transform: translateY(-140px);
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    88% {
        opacity: 1;
    }

    100% {
        transform: translateY(460px);
        opacity: 0;
    }
}

.inner-products .stack-card {
    position: absolute;
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 20px 50px -25px rgba(0, 0, 0, .6);
    padding: 20px 22px;
    animation: floatCard 6s ease-in-out infinite;
}

.inner-products .stack-card h5 {
    font-family: var(--disp);
    font-size: 14.5px;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inner-products .stack-card .chip {
    font-size: 10.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--mono);
    letter-spacing: .03em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.inner-products .chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.inner-products .chip-draft {
    background: rgba(139, 124, 246, .12);
    color: var(--violet);
}

.inner-products .chip-draft::before {
    background: var(--violet);
}

.inner-products .chip-review {
    background: rgba(255, 183, 77, .12);
    color: #FFB74D;
}

.inner-products .chip-review::before {
    background: #FFB74D;
    animation: pulseDot 1.6s ease-in-out infinite;
}

.inner-products .chip-active {
    background: var(--teal-soft);
    color: var(--teal);
}

.inner-products .chip-active::before {
    background: var(--teal);
    animation: pulseDot 1.6s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 0 currentColor;
        opacity: 1;
    }

    50% {
        box-shadow: 0 0 0 4px transparent;
        opacity: .55;
    }
}

.inner-products .stack-card .bar {
    height: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .06);
    margin-top: 14px;
    overflow: hidden;
}

.inner-products .stack-card .bar i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--violet), var(--teal));
    border-radius: 4px;
}

.inner-products .stack-card small {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
    font-family: var(--mono);
}

.inner-products .sc-1 {
    top: 10px;
    z-index: 1;
    transform: rotate(-3deg);
    width: 88%;
    animation-delay: 0s;
}

.inner-products .sc-2 {
    top: 120px;
    z-index: 2;
    left: 8%;
    right: 0;
    width: 88%;
    animation-delay: .4s;
}

.inner-products .sc-3 {
    top: 232px;
    z-index: 3;
    left: 2%;
    right: 6%;
    width: 90%;
    transform: rotate(2deg);
    animation-delay: .8s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(var(--r, 0deg));
    }

    50% {
        transform: translateY(-8px) rotate(var(--r, 0deg));
    }
}

.inner-products .sc-1 {
    --r: -3deg;
}

.inner-products .sc-3 {
    --r: 2deg;
}

.inner-products .float-stat {
    position: absolute;
    right: -4px;
    bottom: 6px;
    background: var(--surface-2);
    border: 1px solid var(--line-strong);
    color: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: var(--glow);
    z-index: 4;
}

.inner-products .float-stat b {
    font-family: var(--mono);
    font-size: 26px;
    display: block;
    background: linear-gradient(120deg, var(--violet), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.inner-products .float-stat span {
    font-size: 11.5px;
    color: var(--muted);
}

/* ---------- TRUST STRIP ---------- */
.inner-products .trust {
    padding: 34px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
}

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

.inner-products .trust .label {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--muted-2);
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.inner-products .trust .logos {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
    align-items: center;
}

.inner-products .trust .logos span {
    font-family: var(--disp);
    font-weight: 600;
    font-size: 16px;
    color: var(--muted);
    opacity: .7;
    transition: opacity .25s ease, color .25s ease;
}

.inner-products .trust .logos span:hover {
    opacity: 1;
    color: var(--ink);
}

/* ---------- STATS BANNER ---------- */
.inner-products .stats {
    background: linear-gradient(120deg, #15112E, #0E1F1D);
    color: #fff;
    padding: 60px 0;
    position: relative;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.inner-products .stats .wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.inner-products .stat b {
    font-family: var(--mono);
    font-size: clamp(30px, 3.6vw, 44px);
    display: block;
    font-weight: 600;
}

.inner-products .stat span {
    color: var(--muted);
    font-size: 14px;
}

/* ---------- ALTERNATING FEATURES ---------- */
.inner-products .feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--line);
}

.inner-products .feature-row:last-child {
    border-bottom: none;
}

.inner-products .feature-row.reverse .f-media {
    order: 2;
}

.inner-products .f-num {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--teal);
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.inner-products .f-text h3 {
    font-size: 26px;
    margin-top: 10px;
}

.inner-products .f-text p {
    color: var(--muted);
    margin-top: 14px;
    font-size: 15.5px;
}

.inner-products .f-text ul {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.inner-products .f-text li {
    font-size: 14.5px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--ink);
}

.inner-products .f-text li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--teal));
    margin-top: 7px;
    flex: none;
}

.inner-products .f-media {
    background: var(--surface);
    border-radius: var(--radius);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition: border-color .3s ease, transform .3s ease;
}

.inner-products .f-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, var(--violet-soft), transparent 60%);
    opacity: .8;
}

.inner-products .feature-row:hover .f-media {
    border-color: var(--line-strong);
    transform: translateY(-3px);
}

.inner-products .f-media .placeholder {
    position: relative;
    font-family: var(--mono);
    color: var(--muted);
    font-size: 12px;
    text-align: center;
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity: .7;
}

/* ---------- BENEFIT GRID (6 cards) ---------- */
.inner-products .grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.inner-products .card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.inner-products .card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow);
    border-color: rgba(139, 124, 246, .4);
}

.inner-products .card .ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--teal-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform .35s var(--ease);
}

.inner-products .card:hover .ic {
    transform: rotate(-6deg) scale(1.06);
}

.inner-products .card .ic i {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: var(--teal);
    display: block;
}

.inner-products .card h4 {
    font-size: 16.5px;
    color: var(--ink);
}

.inner-products .card p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 8px;
}

/* ---------- 3-CARD DIFFERENTIATOR ---------- */
.inner-products .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.inner-products .diff-card {
    padding: 32px 26px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.inner-products .diff-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow-teal);
    border-color: rgba(49, 224, 176, .4);
}

.inner-products .diff-card .tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--violet);
    font-weight: 500;
    text-transform: uppercase;
}

.inner-products .diff-card h4 {
    font-size: 19px;
    margin-top: 12px;
}

.inner-products .diff-card p {
    color: var(--muted);
    font-size: 14.5px;
    margin-top: 10px;
}

/* ---------- PROCESS STRIP (sequential — numbering justified) ---------- */
.inner-products .process {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 56px 40px;
    position: relative;
    overflow: hidden;
}

.inner-products .process::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--violet-soft), transparent 70%);
    pointer-events: none;
}

.inner-products .process .section-head h2,
.process .section-head p {
    color: #fff;
}

.inner-products .process .section-head p {
    color: var(--muted);
}

.inner-products .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 12px;
}

.inner-products .process-steps::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 6%;
    right: 6%;
    height: 1px;
    background: var(--line-strong);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.1s var(--ease);
}

.inner-products .process.in-view .process-steps::before {
    transform: scaleX(1);
}

.inner-products .p-step {
    position: relative;
    padding-right: 20px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.inner-products .process.in-view .p-step {
    opacity: 1;
    transform: none;
}

.inner-products .process.in-view .p-step:nth-child(1) {
    transition-delay: .15s;
}

.inner-products .process.in-view .p-step:nth-child(2) {
    transition-delay: .35s;
}

.inner-products .process.in-view .p-step:nth-child(3) {
    transition-delay: .55s;
}

.inner-products .process.in-view .p-step:nth-child(4) {
    transition-delay: .75s;
}

.inner-products .p-step .dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--teal));
    color: #0A0A12;
    font-family: var(--mono);
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--surface-2);
}

.inner-products .p-step h5 {
    font-family: var(--disp);
    font-size: 15.5px;
    margin-top: 18px;
    color: #fff;
}

.inner-products .p-step p {
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 8px;
}

/* ---------- LONG-FORM SEO CONTENT ---------- */
/* .inner-products .content-block{max-width:820px;} */
.inner-products .content-block h2 {
    font-size: 26px;
    margin-bottom: 16px;
}

.inner-products .content-block h3 {
    font-size: 19px;
    color: var(--ink);
    margin-top: 30px;
    margin-bottom: 10px;
}

.inner-products .content-block p {
    color: var(--muted);
    font-size: 15.5px;
    margin-bottom: 14px;
}

.inner-products .content-block strong {
    color: var(--ink);
}

/* ---------- FAQ ---------- */
.inner-products .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inner-products .faq-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    overflow: hidden;
    transition: border-color .3s ease;
}

.inner-products .faq-item.open {
    border-color: rgba(139, 124, 246, .4);
}

.inner-products .faq-q {
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--disp);
    font-weight: 600;
    font-size: 15.5px;
    color: var(--ink);
    gap: 16px;
}

.inner-products .faq-q .plus {
    font-size: 20px;
    color: var(--teal);
    transition: transform .35s var(--ease);
    flex: none;
}

.inner-products .faq-item.open .plus {
    transform: rotate(45deg);
}

.inner-products .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}

.inner-products .faq-a p {
    padding: 0 22px 20px;
    color: var(--muted);
    font-size: 14.5px;
}

/* ---------- FINAL CTA ---------- */
.inner-products .cta-banner {
    background: linear-gradient(120deg, #12261F, #0E1F1D);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 64px 48px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.inner-products .cta-banner::before {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--teal-soft), transparent 70%);
}

.inner-products .cta-banner h2 {
    color: #fff;
    font-size: clamp(24px, 3vw, 32px);
    position: relative;
}

.inner-products .cta-banner p {
    color: var(--muted);
    margin-top: 10px;
    max-width: 440px;
    position: relative;
}

.inner-products .cta-banner .btn-primary {
    position: relative;
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .inner-products .reveal {
        opacity: 1;
        transform: none;
    }
}

@media(max-width:900px) {
    .inner-products .hero .wrap {
        grid-template-columns: 1fr;
    }

    .inner-products .visual {
        height: 340px;
        margin-top: 20px;
    }

    .inner-products .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
    }

    .inner-products .feature-row.reverse .f-media {
        order: 0;
    }

    .inner-products .grid-6,
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .inner-products .process-steps {
        grid-template-columns: 1fr 1fr;
        row-gap: 32px;
    }

    .inner-products .process-steps::before {
        display: none;
    }

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

    .inner-products .stats .wrap {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
}

@media(max-width:560px) {

    .inner-products .grid-6,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .inner-products .process-steps {
        grid-template-columns: 1fr;
    }

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

    .inner-products section {
        padding: 64px 0;
    }

    .inner-products .cta-banner {
        flex-direction: column;
        text-align: center;
    }
}