/* ─────────────────────────────────────────────────────────
   Qiam — Real Estate Valuation  |  index.css
   Direction: RTL (Arabic)
   ───────────────────────────────────────────────────────── */

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

:root {
    --red: #af1d28;
    --red-lt: #d42233;
    --char: #434543;
    --ink: #0d0b0c;
    --deep: #111012;
    --panel: #1a1618;
    --card: #201d1e;
    --border: rgba(175, 29, 40, 0.18);
    --gold: #c9a050;
    --cream: #f0ebe3;
    --muted: #8a8585;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--deep);
    color: var(--cream);
    font-family: "Tajawal", sans-serif;
    overflow-x: hidden;
}

/* ─── CURSOR ─────────────────────────────────── */
* {
    cursor: none !important;
}
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition:
        transform 0.15s ease,
        width 0.3s,
        height 0.3s;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
    transition:
        width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.1s ease,
        opacity 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
}

/* ─── NAV ─────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 80px;
    background: linear-gradient(
        to bottom,
        rgba(13, 11, 12, 0.95) 0%,
        transparent 100%
    );
    backdrop-filter: blur(0px);
    transition:
        background 0.4s,
        backdrop-filter 0.4s;
}

nav.scrolled {
    background: rgba(13, 11, 12, 0.96);
    backdrop-filter: blur(14px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo img {
    height: 44px;
    width: auto;
    filter: brightness(1.1);
}

.nav-logo-text {
    font-family: "Cairo", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.04em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-family: "Tajawal", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(240, 235, 227, 0.65);
    text-decoration: none;
    transition: color 0.25s;
}

.nav-links a:hover {
    color: var(--cream);
}

.nav-cta {
    font-family: "Tajawal", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 26px;
    border: 1px solid var(--red);
    color: var(--cream);
    text-decoration: none;
    background: transparent;
    transition:
        background 0.3s,
        color 0.3s;
}

.nav-cta:hover {
    background: var(--red);
    color: white;
}

/* ─── HERO ─────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5vw 7vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(
            ellipse 80% 60% at 30% 40%,
            rgba(175, 29, 40, 0.18) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 50% 80% at 80% 80%,
            rgba(67, 69, 67, 0.3) 0%,
            transparent 55%
        ),
        linear-gradient(
            160deg,
            rgba(13, 11, 12, 0.92) 0%,
            rgba(26, 22, 24, 0.85) 40%,
            rgba(15, 13, 14, 0.95) 100%
        );
}

.hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(7, 8, 13, 0.35) 0%,
            rgba(7, 8, 13, 0.82) 100%
        ),
        url("img/hero-abstract-Blj1uFbb.jpg") center center / cover no-repeat;
    opacity: 0.45;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(175, 29, 40, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(175, 29, 40, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-accent-line {
    position: absolute;
    left: 25vw; /* RTL: accent line on left side */
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--red) 30%,
        var(--red) 70%,
        transparent
    );
    z-index: 2;
    opacity: 0.3;
}

.hero-number {
    position: absolute;
    left: 5vw; /* RTL: decorative text anchored left */
    top: 50%;
    transform: translateY(-50%);
    font-family: "Cairo", serif;
    font-size: clamp(120px, 16vw, 220px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(175, 29, 40, 0.12);
    user-select: none;
    z-index: 1;
    letter-spacing: -0.04em;
    line-height: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--red);
}

.hero-eyebrow span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red);
}

.hero-title {
    font-family: "Cairo", serif;
    font-size: clamp(3rem, 6.5vw, 6.5rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--cream);
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-title em {
    font-style: normal;
    color: var(--red);
    font-family: "Amiri", serif;
    font-weight: 400;
    font-size: 1.1em;
}

.hero-subtitle {
    margin-top: 2rem;
    font-family: "Tajawal", sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 2;
    color: rgba(240, 235, 227, 0.6);
    max-width: 520px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.9s forwards;
}

.btn-primary {
    font-family: "Tajawal", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 40px;
    background: var(--red);
    color: white;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: transform 0.3s;
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-outline {
    font-family: "Tajawal", sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 16px 40px;
    border: 1px solid rgba(240, 235, 227, 0.25);
    color: rgba(240, 235, 227, 0.7);
    text-decoration: none;
    transition:
        border-color 0.3s,
        color 0.3s;
}

.btn-outline:hover {
    border-color: var(--cream);
    color: var(--cream);
}

.hero-scroll {
    position: absolute;
    left: 5vw; /* RTL: scroll indicator on left */
    bottom: 7vh;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.4s forwards;
}

.hero-scroll span {
    font-size: 0.75rem;
    color: var(--muted);
    writing-mode: vertical-rl;
    direction: ltr; /* writing-mode text stays LTR */
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--muted), transparent);
}

/* ─── STATS BANNER ─────────────────────────────── */
.stats-banner {
    background: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: "";
    position: absolute;
    right: 0; /* RTL: accent bar on right side */
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
}

.stat-item {
    padding: 3rem 4vw;
    border-left: 1px solid var(--border); /* RTL: dividers on left */
    position: relative;
}

.stat-item:last-child {
    border-left: none;
}

.stat-num {
    font-family: "Cairo", serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
    direction: ltr; /* numbers stay LTR */
    display: inline-block;
}

.stat-num span {
    color: var(--red);
}

.stat-label {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
}

/* ─── SECTION BASE ───────────────────────────────── */
section {
    padding: 10vmin 5vw;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.section-eyebrow-line {
    width: 30px;
    height: 1px;
    background: var(--red);
}

.section-eyebrow span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red);
}

.section-title {
    font-family: "Cairo", serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--cream);
    max-width: 700px;
}

.section-title em {
    font-style: normal;
    font-family: "Amiri", serif;
    font-weight: 400;
    color: var(--red);
}

/* ─── SERVICES ──────────────────────────────────── */
.services {
    background: var(--deep);
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    align-items: end;
    margin-bottom: 5rem;
}

.services-intro-text {
    font-family: "Tajawal", sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 2;
    color: rgba(240, 235, 227, 0.55);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.service-card {
    background: var(--panel);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.4s;
}

.service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right; /* RTL: expand from right */
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: var(--card);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-num {
    font-family: "Cairo", serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 2rem;
    direction: ltr;
    display: inline-block;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--gold);
    opacity: 0.8;
}

.service-name {
    font-family: "Cairo", serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-desc {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--muted);
    font-weight: 300;
}

.service-arrow {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(175, 29, 40, 0.6);
    transition:
        color 0.3s,
        gap 0.3s;
}

.service-card:hover .service-arrow {
    color: var(--red);
    gap: 16px;
}

/* ─── ABOUT ─────────────────────────────────────── */
.about {
    background: var(--panel);
    position: relative;
    overflow: hidden;
}

.about-bg-text {
    position: absolute;
    left: -2vw; /* RTL: background text on left */
    top: 50%;
    transform: translateY(-50%);
    font-family: "Cairo", serif;
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(175, 29, 40, 0.06);
    white-space: nowrap;
    user-select: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-visual {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--card);
    overflow: hidden;
    order: 2; /* RTL: visual on right side */
}

.about-visual-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--card) 0%,
        #2a2326 50%,
        var(--card) 100%
    );
}

.about-visual-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: repeating-linear-gradient(
        45deg,
        var(--red) 0,
        var(--red) 1px,
        transparent 0,
        transparent 50%
    );
    background-size: 12px 12px;
}

.about-visual-logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-logo img {
    width: 60%;
    opacity: 0.15;
    filter: grayscale(1) brightness(3);
}

.about-visual-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
}

.about-visual-corner {
    position: absolute;
    top: 2rem;
    left: 2rem; /* RTL: corner on left */
    width: 60px;
    height: 60px;
    border-top: 2px solid rgba(175, 29, 40, 0.4);
    border-left: 2px solid rgba(175, 29, 40, 0.4); /* RTL: border-left */
}

.about-tag {
    position: absolute;
    bottom: 2rem;
    right: -20px; /* RTL: tag on right side */
    background: var(--red);
    color: white;
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.about-body {
    font-family: "Tajawal", sans-serif;
    order: 1;
}

.about-lead {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.9;
    color: rgba(240, 235, 227, 0.75);
    margin-bottom: 2rem;
}

.about-para {
    font-size: 1rem;
    font-weight: 300;
    line-height: 2;
    color: rgba(240, 235, 227, 0.45);
    margin-bottom: 1.5rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-value-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    margin-top: 7px;
    flex-shrink: 0;
}

.about-value-text {
    font-size: 0.88rem;
    font-family: "Tajawal", sans-serif;
    color: var(--muted);
    line-height: 1.6;
}

.about-value-text strong {
    color: var(--cream);
    display: block;
    margin-bottom: 2px;
    font-weight: 700;
}

/* ─── PROCESS ──────────────────────────────────── */
.process {
    background: var(--deep);
}

.process-track {
    margin-top: 4rem;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.process-track::before {
    content: "";
    position: absolute;
    top: 28px;
    right: calc(12.5% + 10px); /* RTL: start from right */
    left: calc(12.5% + 10px);
    height: 1px;
    background: linear-gradient(
        to left,
        /* RTL: gradient direction */ var(--red) 0%,
        rgba(175, 29, 40, 0.15) 100%
    );
}

.process-step {
    padding: 0 2rem;
    text-align: center;
}

.process-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--red);
    background: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: "Cairo", serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--red);
    position: relative;
    z-index: 1;
    transition:
        background 0.3s,
        color 0.3s;
    direction: ltr;
}

.process-step:hover .process-node {
    background: var(--red);
    color: white;
}

.process-step-title {
    font-family: "Cairo", serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.8rem;
}

.process-step-desc {
    font-size: 0.88rem;
    line-height: 1.9;
    color: var(--muted);
    font-weight: 300;
}

/* ─── TESTIMONIAL ──────────────────────────────── */
.testimonial {
    background: var(--red);
    overflow: hidden;
    position: relative;
}

.testimonial::before {
    content: "\201D"; /* RTL: right double quotation mark */
    position: absolute;
    top: -2rem;
    right: 4vw; /* RTL: quote on right */
    font-family: "Amiri", serif;
    font-size: clamp(150px, 20vw, 260px);
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    user-select: none;
}

.testimonial-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 8vmin 5vw;
}

.testimonial-quote {
    font-family: "Amiri", serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.testimonial-author strong {
    color: white;
    margin-left: 0.5rem; /* RTL: space after name goes to left */
}

/* ─── CTA ──────────────────────────────────────── */
.cta-section {
    background: var(--panel);
    text-align: center;
    padding: 10vmin 5vw;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 60% 60% at 50% 50%,
        rgba(175, 29, 40, 0.08) 0%,
        transparent 70%
    );
}

.cta-section .section-title {
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-family: "Tajawal", sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(240, 235, 227, 0.5);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    line-height: 2;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* ─── FOOTER ──────────────────────────────────── */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 5rem 5vw 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4vw;
    margin-bottom: 4rem;
}

.footer-brand {
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.footer-logo img {
    height: 38px;
}

.footer-tagline {
    font-family: "Tajawal", sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(240, 235, 227, 0.4);
    line-height: 2;
    max-width: 260px;
}

.footer-col-title {
    font-family: "Cairo", serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(240, 235, 227, 0.4);
    text-decoration: none;
    transition: color 0.25s;
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(240, 235, 227, 0.25);
}

.footer-lic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(175, 29, 40, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 0.65rem;
    font-family: "Cairo", serif;
    font-weight: 700;
}

/* ─── SOCIAL ICONS ──────────────────────────────── */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-social-bottom {
    margin-top: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(175, 29, 40, 0.25);
    color: rgba(240, 235, 227, 0.45);
    text-decoration: none;
    transition:
        color 0.25s,
        border-color 0.25s,
        background 0.25s,
        transform 0.2s;
}

.social-icon svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.social-icon:hover {
    color: #fff;
    border-color: var(--red);
    background: rgba(175, 29, 40, 0.18);
    transform: translateY(-2px);
}

/* ─── REVEAL ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.85s ease,
        transform 0.85s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.22s;
}
.reveal-delay-3 {
    transition-delay: 0.34s;
}
.reveal-delay-4 {
    transition-delay: 0.46s;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .stats-banner {
        grid-template-columns: 1fr 1fr;
    }
    .stat-item:nth-child(2) {
        border-left: none;
    }

    .services-intro {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-visual {
        aspect-ratio: 16/9;
        order: 1;
    }
    .about-body {
        order: 2;
    }

    .process-track {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .process-track::before {
        display: none;
    }

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