/* ========================================
   LEADING ERP — Mobile-First CSS
   ======================================== */

:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --blue-light: #eff6ff;
    --text: #0f172a;
    --text-2: #475569;
    --text-3: #94a3b8;
    --bg: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --grad: linear-gradient(135deg,#3b82f6,#1d4ed8);
    --font-en: 'Inter', sans-serif;
    --font-ar: 'Tajawal', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-en);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}
html[dir="rtl"] body { font-family: var(--font-ar); }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.section { padding: 3.5rem 0; }
.alt-section { background: var(--white); }
.text-center { text-align: center; }

/* ===== GRADIENT TEXT ===== */
.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BADGE PILL ===== */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--blue-light);
    color: var(--blue);
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.white-badge { background: rgba(255,255,255,0.2); color: white; border-color: rgba(255,255,255,0.4); }

/* ===== SECTION HEADER ===== */
.sec-head { margin-bottom: 2.5rem; }
.sec-head h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 0.6rem; }
.sec-head p { color: var(--text-2); font-size: 1rem; max-width: 520px; }
.text-center .sec-head p { margin: 0 auto; }
.text-center.sec-head, .sec-head.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn-main, .btn-ghost, .btn-white, .btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    white-space: nowrap;
}
.btn-main { background: var(--grad); color: white; box-shadow: 0 4px 14px rgba(37,99,235,0.35); }
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.45); }
.btn-ghost { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-ghost:hover { background: var(--blue); color: white; }
.btn-white { background: white; color: var(--blue); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.btn-ghost-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 40px; }
#text-logo { font-weight: 900; font-size: 1.4rem; color: var(--text); }
#text-logo span { color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }

/* Center nav links — hidden on mobile, shown on desktop */
.nav-center-links {
    display: none;
}
.nav-cta { display: none; font-size: 0.88rem; padding: 0.55rem 1.2rem; }

.lang-btn {
    display: flex; align-items: center; gap: 6px;
    background: var(--blue-light); border: 1px solid #bfdbfe;
    color: var(--blue); border-radius: 999px;
    padding: 6px 12px; font-size: 0.82rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
    font-family: inherit;
}
.lang-btn:hover { background: var(--blue); color: white; }

.hamburger {
    display: flex; flex-direction: column;
    gap: 5px; background: none; border: none;
    cursor: pointer; padding: 6px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
    display: flex; flex-direction: column;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
    background: white;
    border-top: 1px solid var(--border);
}
.nav-drawer.open { max-height: 400px; }
.drawer-link {
    padding: 1rem 1.5rem;
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.drawer-link:hover { background: var(--blue-light); color: var(--blue); }
.cta-drawer {
    background: var(--grad);
    color: white;
    text-align: center;
    font-weight: 700;
    border-bottom: none;
}
.cta-drawer:hover { background: var(--blue-dark); color: white; }

/* ============================================================
   HERO
============================================================ */
.hero {
    padding-top: 90px;
    padding-bottom: 0;
    background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
    overflow: hidden;
    position: relative;
}
.hero-bg-blob {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.5; z-index: 0;
}
.b1 { width: 500px; height: 500px; top: -100px; right: -100px; background: #bfdbfe; }
.b2 { width: 400px; height: 400px; bottom: 0; left: -80px; background: #c7d2fe; }
.hero .container { position: relative; z-index: 1; text-align: center; }
.hero h1 {
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text);
}
.hero-sub {
    color: var(--text-2);
    font-size: clamp(0.95rem, 3vw, 1.15rem);
    max-width: 580px;
    margin: 0 auto 2rem;
}
.hero-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-img-wrap { position: relative; display: inline-block; width: 100%; max-width: 900px; }
.hero-img-glow {
    position: absolute; inset: 5%;
    background: radial-gradient(circle, rgba(37,99,235,0.2), transparent 70%);
    filter: blur(40px); z-index: 0;
}
.hero-dash-img {
    width: 100%;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 40px rgba(37,99,235,0.15), 0 0 0 1px rgba(0,0,0,0.05);
    position: relative; z-index: 1;
    margin: 0 auto;
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 0;
    overflow: hidden;
}
.trust-scroll {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
    padding-bottom: 2px;
}
.trust-scroll::-webkit-scrollbar { display: none; }
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-2);
    flex-shrink: 0;
}
.trust-item i { color: var(--blue); }
.trust-sep { color: var(--border); flex-shrink: 0; }

/* ============================================================
   STATS
============================================================ */
.stats-section { background: white; border-bottom: 1px solid var(--border); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.stat-box {
    background: white;
    padding: 1.5rem 1.25rem;
    text-align: center;
}
.stat-num {
    font-size: clamp(2rem, 6vw, 2.8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--text); }
.stat-box p { font-size: 0.78rem; color: var(--text-3); line-height: 1.4; }

/* ============================================================
   MODULES
============================================================ */
.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}
.mod-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}
.mod-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.mod-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.mod-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.mod-body p { font-size: 0.82rem; color: var(--text-2); line-height: 1.5; }

/* ============================================================
   AI SECTION
============================================================ */
.ai-section { background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%); }
.ai-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}
.ai-layout.reverse { flex-direction: column-reverse; }
.ai-img-col { width: 100%; position: relative; }
.ai-img-glow {
    position: absolute; inset: 10%;
    background: radial-gradient(circle, rgba(37,99,235,0.2), transparent 70%);
    filter: blur(30px); z-index: 0;
}
.ai-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); position: relative; z-index: 1; }
.mobile-float-img {
    width: 100%; max-width: 320px;
    margin: 0 auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: relative; z-index: 1;
    animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
.ai-text-col { width: 100%; }
.ai-text-col h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 800; margin-bottom: 1rem; }
.ai-text-col p { color: var(--text-2); margin-bottom: 1.5rem; font-size: 0.97rem; line-height: 1.65; }
.ai-features-list { display: flex; flex-direction: column; gap: 1rem; }
.ai-feat {
    display: flex; align-items: flex-start; gap: 1rem;
    background: white; padding: 1rem; border-radius: var(--radius-sm);
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.ai-feat i { color: var(--blue); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.ai-feat strong { font-size: 0.9rem; display: block; margin-bottom: 2px; }
.ai-feat small { color: var(--text-2); font-size: 0.8rem; }

/* ============================================================
   HOW IT WORKS
============================================================ */
.steps-wrap { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-circle {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--grad); color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 800;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
    position: relative; z-index: 1;
}
.step-line {
    position: absolute;
    left: calc(1rem + 22px - 1px);
    width: 2px; height: calc(100% + 1px);
    background: linear-gradient(180deg, #bfdbfe, transparent);
    top: 44px;
}
.step { position: relative; padding-bottom: 2.5rem; }
.step.last { padding-bottom: 0; }
.step-content { padding-top: 10px; }
.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-content p { font-size: 0.88rem; color: var(--text-2); }

/* ============================================================
   BENEFITS
============================================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.benefit-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.ben-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}
.benefit-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.35rem; }
.benefit-card p { font-size: 0.8rem; color: var(--text-2); line-height: 1.5; }

/* ============================================================
   INDUSTRIES
============================================================ */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
.ind-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem 0.75rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
    cursor: default;
}
.ind-card:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.ind-card i { font-size: 1.5rem; color: var(--blue); }
.ind-card span { color: var(--text); }
.ind-card:hover span { color: var(--blue); }

/* ============================================================
   CHECK LIST (Mobile App)
============================================================ */
.check-list { display: flex; flex-direction: column; gap: 0.65rem; }
.check-list li {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.95rem; font-weight: 500; color: var(--text);
}
.check-list i { color: var(--blue); font-size: 1rem; flex-shrink: 0; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.testi-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.stars { color: #f59e0b; margin-bottom: 0.75rem; font-size: 0.9rem; }
.testi-card p {
    font-size: 0.9rem;
    color: var(--text-2);
    font-style: italic;
    margin-bottom: 1.2rem;
    line-height: 1.65;
}
.testi-footer { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.testi-footer strong { font-size: 0.9rem; display: block; }
.testi-footer small { font-size: 0.78rem; color: var(--text-3); }

/* ============================================================
   QATAR FEATURES
============================================================ */
.qatar-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.qf-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.1rem;
    box-shadow: var(--shadow-sm);
}
.qf-item i { color: var(--blue); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.qf-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.qf-item p { font-size: 0.78rem; color: var(--text-2); line-height: 1.5; }

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
    background: var(--grad);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.cta-blob {
    position: absolute; border-radius: 50%;
    opacity: 0.2; filter: blur(60px);
}
.c1 { width: 400px; height: 400px; top: -100px; left: -100px; background: white; }
.c2 { width: 300px; height: 300px; bottom: -80px; right: -60px; background: #93c5fd; }
.cta-section h2 { font-size: clamp(1.5rem, 5vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; color: white; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 0; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: #0f172a;
    color: white;
    padding: 3.5rem 0 1.5rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0;
}
.footer-brand { min-width: 0; }
.footer-brand img {
    height: 52px;
    margin-bottom: 1rem;
    background: white;
    padding: 8px 14px;
    border-radius: 10px;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; max-width: 320px; }

/* Two link columns sit side-by-side inside this wrapper */
.footer-cols-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.footer-socials { display: flex; gap: 0.6rem; }
.footer-socials a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    transition: all 0.2s;
}
.footer-socials a:hover { background: var(--blue); border-color: var(--blue); color: white; }

.footer-links-col { min-width: 0; }
.footer-links-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}
.footer-links-col a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
    transition: color 0.2s;
    word-break: break-word;
}
.footer-links-col a:hover { color: white; }
.footer-links-col i { width: 16px; color: var(--blue); flex-shrink: 0; font-size: 0.85rem; }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
    text-align: center;
    padding-top: 1.5rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
}

/* ============================================================
   STICKY MOBILE CTA
============================================================ */
.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    display: flex;
    z-index: 999;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    background: white;
}
.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0.7rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-2);
    border-right: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
}
.sticky-btn:last-child { border-right: none; }
.sticky-btn i { font-size: 1.1rem; }
.sticky-btn.call { color: #16a34a; }
.sticky-btn.email { color: var(--blue); }
.sticky-btn.demo { background: var(--grad); color: white; }
.sticky-btn.demo i { font-size: 1rem; }
.sticky-btn:hover { opacity: 0.85; }

/* ============================================================
   TABLET (640px+)
============================================================ */
@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
    .section { padding: 4rem 0; }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .ind-grid { grid-template-columns: repeat(4, 1fr); }
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1.5fr 1fr; }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================================
   DESKTOP (1024px+)
============================================================ */
@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
    .section { padding: 5.5rem 0; }

    /* Nav */
    .hamburger { display: none; }
    .nav-cta { display: inline-flex !important; }
    .nav-center-links {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .nav-inner { position: relative; }
    .nav-center-links a {
        padding: 0.45rem 0.9rem;
        border-radius: 8px;
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--text-2);
        transition: all 0.2s;
    }
    .nav-center-links a:hover { color: var(--blue); background: var(--blue-light); }
    .nav-drawer {
        display: none !important;
    }

    /* Hero */
    .hero { padding-top: 100px; }
    .hero-sub { font-size: 1.2rem; }
    .hero-dash-img { border-radius: 16px 16px 0 0; max-width: 1000px; }

    /* Modules */
    .modules-grid { grid-template-columns: repeat(4, 1fr); }

    /* AI Layout */
    .ai-layout { flex-direction: row; gap: 4rem; }
    .ai-layout.reverse { flex-direction: row-reverse; }
    .ai-img-col { flex: 1; }
    .ai-text-col { flex: 1; }

    /* Industries */
    .ind-grid { grid-template-columns: repeat(4, 1fr); }

    /* Testimonials */
    .testi-grid { grid-template-columns: repeat(3, 1fr); }

    /* Qatar Features */
    .qatar-features-grid { grid-template-columns: repeat(4, 1fr); }

    /* Steps */
    .steps-wrap { flex-direction: row; gap: 2rem; }
    .step { flex-direction: column; align-items: center; text-align: center; padding-bottom: 0; flex: 1; }
    .step-line { display: none; }

    /* Mobile float */
    .mobile-float-img { max-width: 420px; }

    /* Hide sticky CTA on desktop */
    .sticky-cta { display: none; }
}

/* RTL adjustments */
html[dir="rtl"] .step-line { left: auto; right: calc(1rem + 22px - 1px); }
html[dir="rtl"] .qf-item i,
html[dir="rtl"] .ai-feat i { margin-left: 0; }
html[dir="rtl"] .footer-links-col a { flex-direction: row-reverse; }
