/* ==========================================================================
   Pardazesh Sazan Novin - Site Stylesheet
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@500;700&display=swap");

:root {
    --void: #161B26;
    --void-2: #1C2230;
    --panel: #232A3B;
    --panel-2: #2C3447;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.22);
    --red: #E11B1B;
    --red-bright: #FF3B30;
    --red-deep: #8A0E0E;
    --red-glow: rgba(225, 27, 27, 0.5);
    --red-tint: rgba(225, 27, 27, 0.16);
    --signal: #00E5A0;
    --signal-glow: rgba(0, 229, 160, 0.45);
    --signal-tint: rgba(0, 229, 160, 0.14);
    --ink: #FFFFFF;
    --body-color: #C7CCDA;
    --muted: #838BA0;
    --maxw: 1220px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazirmatn', system-ui, sans-serif;
    background: var(--void);
    color: var(--ink);
    direction: rtl;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

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

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

section {
    position: relative;
    z-index: 1;
}

.wrap {
    max-width: var(--maxw);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.35;
    mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, black 20%, transparent 75%);
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(900px 560px at 82% -6%, rgba(225, 27, 27, 0.32), transparent 55%), radial-gradient(700px 500px at 6% 18%, rgba(0, 229, 160, 0.16), transparent 55%), radial-gradient(1000px 700px at 50% 115%, rgba(225, 27, 27, 0.22), transparent 60%);
}

/* ---------------- HEADER ---------------- */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: 0.35s;
    border-bottom: 1px solid transparent;
}

    header.scrolled {
        background: rgba(7, 7, 11, 0.82);
        backdrop-filter: blur(18px) saturate(160%);
        border-bottom: 1px solid var(--line);
    }

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

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

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 24px -8px var(--red-glow);
    flex: 0 0 auto;
}

    .brand-mark svg {
        width: 20px;
        height: 20px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.4;
    }

.brand .b-name {
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.2px;
    color: var(--ink);
    display: block;
}

.brand .b-sub {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

    .menu a {
        font-size: 14.5px;
        font-weight: 500;
        color: var(--body-color);
        padding: 9px 15px;
        border-radius: 9px;
        transition: 0.2s;
    }

        .menu a:hover {
            color: var(--ink);
            background: rgba(255, 255, 255, 0.06);
        }

        .menu a.ping-link {
            color: var(--signal);
            font-weight: 700;
        }

.cta-top {
    margin-right: 8px;
    background: var(--red);
    color: #fff !important;
    font-weight: 700 !important;
    padding: 11px 22px !important;
    border-radius: 11px !important;
    box-shadow: 0 10px 26px -10px var(--red-glow);
    transition: 0.2s;
}

    .cta-top:hover {
        background: var(--red-bright);
        transform: translateY(-1px);
    }

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    background: var(--panel);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

    .burger span {
        display: block;
        width: 19px;
        height: 2px;
        background: var(--ink);
        border-radius: 2px;
        transition: 0.25s;
    }

/* ---------------- HERO / LIVE PING MONITOR ---------------- */

.hero {
    padding: 150px 0 70px;
    z-index: 1;
}

.hero-top {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 54px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--signal);
    background: var(--signal-tint);
    border: 1px solid rgba(0, 229, 160, 0.3);
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.3px;
}

    .eyebrow .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--signal);
        box-shadow: 0 0 0 4px var(--signal-tint);
        animation: blink 1.6s infinite;
    }

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-size: clamp(36px, 6.2vw, 68px);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -1.5px;
    color: var(--ink);
}

    .hero h1 .hl {
        color: var(--red);
        position: relative;
        white-space: nowrap;
    }

        .hero h1 .hl::after {
            content: "";
            position: absolute;
            left: -2%;
            right: -2%;
            bottom: 0.08em;
            height: 0.4em;
            background: var(--red);
            opacity: 0.2;
            border-radius: 8px;
            z-index: -1;
            transform: skewX(-8deg);
        }

.hero p.lead {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--body-color);
    max-width: 56ch;
    margin: 22px auto 0;
}

.monitor {
    max-width: 920px;
    margin: 56px auto 0;
    background: linear-gradient(165deg, var(--panel), var(--void-2));
    border: 1px solid var(--line-strong);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
}

.monitor-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

    .monitor-bar .dots {
        display: flex;
        gap: 7px;
    }

        .monitor-bar .dots i {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--line-strong);
        }

    .monitor-bar .title {
        font-family: 'JetBrains Mono', monospace;
        font-size: 12.5px;
        color: var(--muted);
        letter-spacing: 0.5px;
    }

    .monitor-bar .live-tag {
        display: flex;
        align-items: center;
        gap: 7px;
        font-family: 'JetBrains Mono', monospace;
        font-size: 11.5px;
        font-weight: 700;
        color: var(--signal);
    }

        .monitor-bar .live-tag i {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--signal);
            animation: blink 1.6s infinite;
        }

.monitor-body {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}

.monitor-stats {
    padding: 38px 40px;
    border-left: 1px solid var(--line);
}

.monitor-num {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

    .monitor-num b {
        font-family: 'JetBrains Mono', monospace;
        font-size: clamp(56px, 7vw, 84px);
        font-weight: 700;
        color: var(--ink);
        line-height: 1;
        letter-spacing: -2px;
        font-variant-numeric: tabular-nums;
    }

    .monitor-num span {
        color: var(--muted);
        font-size: 17px;
        font-weight: 600;
        font-family: 'JetBrains Mono', monospace;
    }

.monitor-was {
    margin-top: 10px;
    color: var(--muted);
    font-size: 13.5px;
    font-family: 'JetBrains Mono', monospace;
}

    .monitor-was s {
        color: var(--red-bright);
    }

.monitor-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
}

.monitor-chip {
    font-size: 12.5px;
    font-weight: 600;
    color: #DCDDE6;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line-strong);
    padding: 7px 13px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .monitor-chip svg {
        width: 14px;
        height: 14px;
        stroke: var(--signal);
        fill: none;
        stroke-width: 2.4;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.monitor-cta {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 15.5px;
    background: linear-gradient(135deg, var(--red), var(--red-bright));
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 16px 34px -14px var(--red-glow);
    transition: 0.22s;
}

    .monitor-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 42px -14px var(--red-glow);
    }

    .monitor-cta svg {
        width: 18px;
        height: 18px;
    }

.monitor-graph {
    padding: 38px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .monitor-graph .glabel {
        font-family: 'JetBrains Mono', monospace;
        font-size: 11.5px;
        color: var(--muted);
        margin-bottom: 16px;
        letter-spacing: 0.5px;
    }

.graph-svg {
    width: 100%;
    height: 120px;
}

    .graph-svg path.line {
        fill: none;
        stroke: var(--signal);
        stroke-width: 2.4;
        stroke-linecap: round;
        filter: drop-shadow(0 0 6px var(--signal-glow));
    }

    .graph-svg path.fill {
        fill: url(#graphGrad);
        opacity: 0.5;
    }

.grid-dots {
    display: flex;
    gap: 5px;
    margin-top: 18px;
}

    .grid-dots i {
        flex: 1;
        height: 26px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--line);
    }

/* ---------------- SECTION HEADINGS ---------------- */

.head {
    max-width: 640px;
    margin: 0 auto 52px;
    text-align: center;
}

.kicker {
    color: var(--red-bright);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
    font-family: 'JetBrains Mono', monospace;
}

.head h2 {
    font-size: clamp(28px, 4.4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1.22;
    color: var(--ink);
}

.head p {
    color: var(--body-color);
    font-size: 16.5px;
    margin-top: 14px;
}

.section-pad {
    padding: 100px 0;
}

/* ---------------- SERVICES ---------------- */

.svc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: 0.32s cubic-bezier(0.2, 0.7, 0.3, 1);
}

    .card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 20px;
        padding: 1px;
        background: linear-gradient(135deg, var(--red), transparent 40%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: 0.32s;
    }

    .card:hover {
        transform: translateY(-6px);
        background: var(--panel-2);
    }

        .card:hover::before {
            opacity: 1;
        }

    .card.feature {
        grid-column: span 3;
    }

    .card.s2,
    .card.s3,
    .card.s4,
    .card.s5 {
        grid-column: span 3;
    }

.ic {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    background: var(--red-tint);
    border: 1px solid rgba(225, 27, 27, 0.28);
}

    .ic svg {
        width: 26px;
        height: 26px;
        stroke: var(--red-bright);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    color: var(--ink);
}

.card p {
    color: var(--body-color);
    font-size: 14.5px;
    line-height: 1.85;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.tag {
    font-size: 12px;
    font-weight: 600;
    color: #FFB4B0;
    background: var(--red-tint);
    border: 1px solid rgba(225, 27, 27, 0.22);
    padding: 5px 12px;
    border-radius: 999px;
}

/* ---------------- WHY US ---------------- */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
}

.why-item {
    text-align: center;
    padding: 36px 20px;
    background: var(--panel);
    transition: 0.25s;
}

    .why-item:hover {
        background: var(--panel-2);
    }

    .why-item .wic {
        width: 56px;
        height: 56px;
        border-radius: 15px;
        margin: 0 auto 18px;
        display: grid;
        place-items: center;
        background: var(--signal-tint);
        border: 1px solid rgba(0, 229, 160, 0.28);
    }

        .why-item .wic svg {
            width: 26px;
            height: 26px;
            stroke: var(--signal);
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

    .why-item h4 {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--ink);
    }

    .why-item p {
        color: var(--body-color);
        font-size: 14px;
    }

/* ---------------- PROCESS ---------------- */

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

    .steps::before {
        content: "";
        position: absolute;
        top: 26px;
        right: 12.5%;
        left: 12.5%;
        height: 1px;
        background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px);
        z-index: 0;
    }

.step {
    position: relative;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
}

    .step .num {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: var(--void);
        border: 1px solid var(--line-strong);
        display: grid;
        place-items: center;
        margin: 0 auto 22px;
        font-family: 'JetBrains Mono', monospace;
        font-weight: 700;
        font-size: 15px;
        color: var(--red-bright);
        position: relative;
    }

        .step .num::after {
            content: "";
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            border: 1px solid rgba(225, 27, 27, 0.3);
        }

    .step h4 {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--ink);
    }

    .step p {
        color: var(--body-color);
        font-size: 13.5px;
        max-width: 24ch;
        margin-left: auto;
        margin-right: auto;
    }

/* ---------------- ABOUT ---------------- */

.about-box {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 56px;
    max-width: 820px;
    margin: 0 auto;
}

    .about-box p {
        font-size: 17.5px;
        line-height: 2;
        color: var(--body-color);
    }

/* ---------------- CONTACT ---------------- */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
    align-items: stretch;
}

.info-card {
    background: linear-gradient(165deg, var(--panel-2), var(--void-2));
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

    .info-card::before {
        content: "";
        position: absolute;
        bottom: -120px;
        left: -100px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle, var(--red-glow), transparent 70%);
        opacity: 0.5;
    }

    .info-card h3 {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 8px;
        color: #fff;
        position: relative;
    }

    .info-card .sub {
        color: var(--muted);
        margin-bottom: 28px;
        position: relative;
    }

.info-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    color: #fff;
    position: relative;
}

    .info-row:first-of-type {
        border-top: none;
    }

    .info-row .ir-ic {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        flex: 0 0 auto;
        display: grid;
        place-items: center;
        background: var(--red-tint);
        border: 1px solid rgba(225, 27, 27, 0.3);
    }

        .info-row .ir-ic svg {
            width: 20px;
            height: 20px;
            stroke: var(--red-bright);
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

    .info-row .label {
        font-size: 12.5px;
        color: var(--muted);
    }

    .info-row .val {
        font-weight: 700;
        font-size: 15.5px;
        color: #fff;
    }

form.contact {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 38px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    form.contact .grid2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

.field label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ink);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    background: var(--void-2);
    border: 1px solid var(--line-strong);
    color: var(--ink);
    border-radius: 11px;
    padding: 13px 15px;
    font-family: inherit;
    font-size: 14.5px;
    transition: 0.2s;
    resize: vertical;
}

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
        outline: none;
        border-color: var(--red);
        box-shadow: 0 0 0 4px rgba(225, 27, 27, 0.15);
    }

    .field input::placeholder,
    .field textarea::placeholder {
        color: var(--muted);
    }

form.contact .btn-primary {
    justify-content: center;
    width: 100%;
    margin-top: 4px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 15.5px;
    padding: 14px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 14px 30px -12px var(--red-glow);
    transition: 0.2s;
}

    form.contact .btn-primary:hover {
        background: var(--red-bright);
        transform: translateY(-1px);
    }

.form-note {
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    min-height: 18px;
}

/* ---------------- FOOTER ---------------- */

footer {
    border-top: 1px solid var(--line);
    padding: 60px 0 28px;
    margin-top: 20px;
}

.foot-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.foot-brand {
    max-width: 320px;
}

    .foot-brand .brand {
        margin-bottom: 16px;
    }

    .foot-brand p {
        color: var(--muted);
        font-size: 14px;
    }

.foot-cols {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.foot-col h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--ink);
}

.foot-col a {
    display: block;
    color: var(--muted);
    font-size: 14px;
    padding: 5px 0;
    transition: 0.2s;
}

    .foot-col a:hover {
        color: var(--red-bright);
    }

.foot-bottom {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
}

/* ---------------- REVEAL ANIMATION ---------------- */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

    .reveal.in {
        opacity: 1;
        transform: none;
    }

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 920px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card.feature,
    .card.s2,
    .card.s3,
    .card.s4,
    .card.s5 {
        grid-column: span 2;
    }

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

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

        .steps::before {
            display: none;
        }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-box {
        padding: 36px;
    }
}

@media (max-width: 760px) {
    .monitor-body {
        grid-template-columns: 1fr;
    }

    .monitor-stats {
        border-left: none;
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 680px) {
    .menu {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: rgba(7, 7, 11, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--line);
        padding: 14px 24px 22px;
        gap: 4px;
        transform: translateY(-130%);
        transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
        max-height: calc(100vh - 78px);
        overflow: auto;
    }

        .menu.open {
            transform: none;
        }

        .menu a {
            padding: 14px 12px;
            font-size: 15.5px;
        }

    .cta-top {
        margin: 8px 0 0;
        text-align: center;
    }

    .burger {
        display: flex;
    }

        .burger.x span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .burger.x span:nth-child(2) {
            opacity: 0;
        }

        .burger.x span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

    .hero {
        padding: 130px 0 60px;
    }

    .monitor-stats,
    .monitor-graph {
        padding: 28px 24px;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .card.feature,
    .card.s2,
    .card.s3,
    .card.s4,
    .card.s5 {
        grid-column: span 1;
    }

    .why-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    form.contact .grid2 {
        grid-template-columns: 1fr;
    }

    .section-pad {
        padding: 70px 0;
    }

    .about-box {
        padding: 28px;
    }

    .brand .b-sub {
        display: none;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
