/* =====================================================================
   Delivin — unified site stylesheet (new DEL brand identity)
   Brand: green #44b226 + navy #25265e | Fonts: Tajawal (ar) / Poppins (lat)
   ===================================================================== */

@import url("../fonts/tajawal.css");
@import url("../fonts/poppins.css");

:root {
    --green: #44b226;
    --green-d: #389a1f;
    --green-soft: #e9f6e3;
    --navy: #25265e;
    --navy-d: #1b1c46;
    --navy-soft: #ececf4;

    --ink: #25265e;
    --muted: #6c6d86;
    --line: #e7e8ef;
    --bg: #ffffff;
    --bg-soft: #f5f7fb;

    --radius: 16px;
    --radius-lg: 28px;
    --shadow: 0 18px 45px -22px rgba(37, 38, 94, .35);
    --shadow-sm: 0 8px 24px -14px rgba(37, 38, 94, .3);

    /* legacy aliases used by customer / ramadan pages */
    --main: #44b226;
    --main-color: #44b226;
    --hover-color: #389a1f;
    --default-color: #25265e;
    --secondary-color: #44b226;
    --red-color: #25265e;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Tajawal", "Segoe UI", Tahoma, sans-serif;
    font-size: 16px;
    line-height: 1.85;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: "Tajawal", sans-serif; font-weight: 700; color: var(--navy); line-height: 1.4; }
a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green); }
img { max-width: 100%; }
p { margin: 0 0 1rem; }
.en, .ltr { font-family: "Poppins", sans-serif; direction: ltr; unicode-bidi: isolate; }

::selection { background: var(--green); color: #fff; }

/* ---------- Layout helpers ---------- */
.section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-title { font-size: clamp(1.6rem, 2.4vw, 2.3rem); font-weight: 800; margin-bottom: .5rem; }
.section-kicker {
    display: inline-block; font-weight: 700; color: var(--green);
    background: var(--green-soft); padding: .35rem 1rem; border-radius: 999px;
    font-size: .9rem; margin-bottom: 1rem;
}
.text-green { color: var(--green) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-green { background: var(--green) !important; }
.lead-muted { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn-brand,
.btn-orange, .btn-darkblue {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--green); color: #fff !important;
    border: 2px solid var(--green); border-radius: 999px;
    padding: .7rem 2rem; font-weight: 700; font-size: 1rem;
    cursor: pointer; transition: all .25s ease; text-decoration: none;
}
.btn-brand:hover,
.btn-orange:hover, .btn-darkblue:hover {
    background: var(--navy); border-color: var(--navy); color: #fff !important;
    transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
.btn-brand-outline,
.btn-outline-darkblue {
    display: inline-flex; align-items: center; gap: .5rem;
    background: transparent; color: var(--navy) !important;
    border: 2px solid var(--navy); border-radius: 999px;
    padding: .65rem 1.8rem; font-weight: 700; transition: all .25s ease;
}
.btn-brand-outline:hover,
.btn-outline-darkblue:hover {
    background: var(--navy); color: #fff !important;
}

/* ---------- Navbar ---------- */
.site-nav, .main-nav {
    position: sticky; top: 0; z-index: 1030;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: saturate(1.4) blur(8px);
    border-bottom: 1px solid var(--line);
    transition: top .35s ease, box-shadow .25s ease;
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); }
.site-nav .navbar-brand img { height: 56px; }
.site-nav .nav-link {
    font-weight: 700; color: var(--navy); padding: .5rem 1rem !important;
    position: relative;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: var(--green); }
.site-nav .nav-link.active::after {
    content: ""; position: absolute; inset-inline: 1rem; bottom: 2px;
    height: 3px; border-radius: 3px; background: var(--green);
}
.navbar-toggler { border: 0; }
.navbar-toggler:focus { box-shadow: none; }

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(circle at 85% 15%, rgba(68, 178, 38, .12), transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(37, 38, 94, .10), transparent 45%),
        var(--bg);
    padding: 90px 0 70px;
}
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; }
.hero h1 .hl { color: var(--green); }
.hero p { color: var(--muted); font-size: 1.15rem; max-width: 30rem; }
.hero-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); padding: 1rem;
}
.float-y { animation: floatY 5s ease-in-out infinite alternate; }
@keyframes floatY { from { transform: translateY(0); } to { transform: translateY(-22px); } }

/* ---------- Feature / type cards ---------- */
.feature-card, .type {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 2rem 1.5rem; height: 100%; text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.feature-card:hover, .type:hover {
    transform: translateY(-6px); box-shadow: var(--shadow);
    border-color: var(--green);
}
.feature-icon {
    width: 70px; height: 70px; margin: 0 auto 1.2rem; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--green-soft); color: var(--green); font-size: 1.8rem;
}
.feature-card h5 { color: var(--navy); margin-bottom: .6rem; }
.feature-card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Store buttons ---------- */
.store-btn, .store {
    display: flex; align-items: center; gap: .8rem; justify-content: center;
    background: var(--navy); color: #fff !important; border-radius: 14px;
    padding: .7rem 1.4rem; transition: all .25s ease; min-width: 170px;
}
.store-btn:hover, .store:hover { background: var(--green); transform: translateY(-2px); }
.store-btn i { font-size: 2rem; }
.store-btn small { display: block; font-size: .72rem; opacity: .8; }
.store-btn b { display: block; font-size: 1.05rem; font-family: "Poppins", sans-serif; }

/* ---------- Contact ---------- */
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.contact-info i {
    width: 46px; height: 46px; border-radius: 50%; background: var(--green-soft);
    color: var(--green); display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-inline-start: .75rem;
}
.form-control {
    border: 1px solid var(--line); border-radius: 12px; padding: .75rem 1rem;
    background: var(--bg-soft); font-family: inherit;
}
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 .2rem rgba(68, 178, 38, .15); background: #fff; }

/* ---------- Footer ---------- */
.site-footer, .footer {
    background: var(--navy); color: #cfd0e6; padding: 64px 0 0;
}
.site-footer h6 { color: #fff; font-weight: 700; margin-bottom: 1.1rem; }
.site-footer a, .footer a { color: #cfd0e6; }
.site-footer a:hover, .footer a:hover { color: var(--green); }
.site-footer .brand-logo { height: 84px; margin-bottom: 1rem; }
.site-footer .p-descrition { color: #a9aac8; font-size: .95rem; max-width: 22rem; }
.footer-app {
    display: flex; align-items: center; gap: .7rem; background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px; padding: .6rem 1rem;
    margin-bottom: .75rem; color: #fff;
}
.footer-app:hover { background: var(--green); color: #fff; }
.footer-app i { font-size: 1.7rem; }
.footer-app small { display: block; font-size: .7rem; opacity: .8; }
.footer-app b { display: block; font-family: "Poppins", sans-serif; }
.footer-bottom {
    margin-top: 48px; border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 0; font-size: .88rem; color: #a9aac8;
}
#social-delivin { list-style: none; display: flex; gap: .6rem; padding: 0; margin: 0; }
#social-delivin a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .1);
    color: #fff !important; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: all .25s ease;
}
#social-delivin a:hover { background: var(--green); transform: translateY(-3px); }

/* ---------- Scroll-to-top ---------- */
.scrollTop {
    position: fixed; bottom: 28px; left: 28px; z-index: 1040;
    width: 46px; height: 46px; border-radius: 50%; background: var(--green);
    color: #fff; display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; pointer-events: none;
    transition: all .3s ease; box-shadow: var(--shadow-sm); font-size: 1.1rem;
}
.scrollTop.active { opacity: 1; pointer-events: auto; }
.scrollTop:hover { background: var(--navy); }

/* ---------- Page header (about / inner pages) ---------- */
.page-header, .header-about {
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-d) 100%);
    color: #fff; padding: 120px 0 60px; text-align: center;
}
.page-header h1, .header-about h3 { color: #fff; font-size: 2.2rem; font-weight: 800; }
.page-header .crumb, .header-about a { color: #b9bad6; }
.page-header .crumb a:hover { color: var(--green); }

/* ---------- Rich text (policy) ---------- */
.rich-text { background: #fff; }
.rich-text h1 { font-size: 1.5rem; color: var(--green); margin: 2rem 0 .5rem; }
.rich-text h2 { font-size: 1.15rem; color: var(--navy); margin: 1.5rem 0 .4rem; }
.rich-text p { color: var(--muted); }
.rich-text hr { border: 0; border-top: 1px solid var(--line); margin: 1rem 0; }

/* =====================================================================
   Compatibility utilities — used by customer tracking/location & ramadan
   (kept faithful to original behaviour, re-skinned to brand colours)
   ===================================================================== */
.bg-main { background: var(--main) !important; }
.text-main { color: var(--main) !important; }
.border-main { border-color: var(--main) !important; }
.bg-circle { background: var(--green-soft); }
.bg-none { background: transparent !important; }
.cursor { cursor: pointer; }
.font-14 { font-size: 14px; }
.font-15 { font-size: 16px; }
.font-17 { font-size: 17px; }
.font-30 { font-size: clamp(1.2rem, 3vw, 1.9rem); }
.font-36 { font-size: clamp(1.4rem, 4vw, 2.2rem); }
.rounded-43 { border-radius: 28px; }
.rounded-15 { border-radius: 15px; }
.w-13 { width: 10px; }
.h-13 { height: 10px; }
.w-29 { width: 28px; }
.h-29 { height: 28px; }
.z-1200 { z-index: 120; right: 50%; }
.mt-44 { margin-top: 30px; }
.w-map { width: 92%; margin: auto; }
.w-map #map, .w-map iframe { border-radius: 20px; }
.btn-main {
    padding: .7rem 2.6rem; background: var(--green); color: #fff !important;
    border: 0; border-radius: 999px; font-weight: 700; transition: all .25s ease;
}
.btn-main:hover { background: var(--navy); color: #fff !important; }

.time-line { z-index: 2; }
.time-line::after {
    content: ""; position: absolute; width: 26%; height: 3px;
    background: var(--green); left: 0; right: 11%; top: 14px; z-index: 1;
}
.time-line::before {
    content: ""; position: absolute; width: 53%; height: 3px;
    background: var(--green-soft); left: 0; right: 41%; top: 14px; z-index: 1;
}

/* ramadan helper widths (kept from original markup) */
.w-60 { width: 60px; }
.w-15 { width: 15px; }
.w-101 { width: 130px; }
.my-50 { margin: 12px 0; }
@media (max-width: 600px) { .w-sm-90 { width: 90% !important; } }

/* legacy aliases still referenced by some markup */
.boldx { font-weight: 800; }
.cb { color: var(--green) !important; }
.header-link { color: var(--navy); font-weight: 700; }
.header-link:hover { color: var(--green) !important; }
.p-descrition { color: #a9aac8; }
.main-bg { background: var(--green); color: #fff; padding: .3rem 1rem; border-radius: 999px; display: inline-block; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .section { padding: 56px 0; }
    .hero { padding: 60px 0 40px; }
    .site-nav .navbar-collapse { padding: 1rem 0; }
}
@media (max-width: 575px) {
    .site-nav .navbar-brand img { height: 46px; }
    .store-btn, .store { min-width: 100%; }
}

/* ---------- Animations (kept for home decorative svgs if used) ---------- */
.rotate-center { animation: rotateC 6s linear infinite; }
@keyframes rotateC { to { transform: rotate(360deg); } }
.slide-left { animation: slideL 4s ease-in-out infinite alternate; }
@keyframes slideL { to { transform: translateX(-40px); } }

/* =====================================================================
   v2 — professional / modern visual layer
   ===================================================================== */
:root {
    --shadow-lg: 0 40px 80px -32px rgba(37, 38, 94, .45);
    --shadow-soft: 0 24px 60px -30px rgba(37, 38, 94, .30);
}

body { font-size: 16.5px; letter-spacing: -.1px; }
.section { padding: 96px 0; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.25; letter-spacing: -.5px; }
.lead-muted { font-size: 1.08rem; line-height: 2; }
.section-kicker {
    background: linear-gradient(135deg, var(--green-soft), #fff);
    border: 1px solid rgba(68, 178, 38, .25); letter-spacing: .2px;
}

/* Buttons — premium feel */
.btn-brand, .btn-orange, .btn-darkblue {
    padding: .85rem 2.2rem; box-shadow: 0 14px 28px -14px rgba(68, 178, 38, .65);
    position: relative; overflow: hidden;
}
.btn-brand::after, .btn-orange::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.28), transparent 70%);
    transform: translateX(-120%); transition: transform .6s ease;
}
.btn-brand:hover::after, .btn-orange:hover::after { transform: translateX(120%); }
.btn-brand:hover { box-shadow: 0 20px 36px -14px rgba(37, 38, 94, .55); }
.btn-lg-brand { padding: 1rem 2.6rem; font-size: 1.05rem; }

/* ---------- Hero (image-driven) ---------- */
.hero {
    padding: 110px 0 96px;
    background:
        radial-gradient(40rem 40rem at 90% -10%, rgba(68, 178, 38, .14), transparent 60%),
        radial-gradient(36rem 36rem at -5% 110%, rgba(37, 38, 94, .12), transparent 60%),
        linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.22; letter-spacing: -1px; }
.hero h1 .hl { position: relative; color: var(--green); white-space: nowrap; }
.hero h1 .hl::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .28em;
    background: rgba(68, 178, 38, .18); border-radius: 4px; z-index: -1;
}
.hero p { font-size: 1.2rem; line-height: 2; max-width: 32rem; }

.hero-collage { position: relative; padding: 1.5rem; }
.hero-collage .shot {
    border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5; background: #eee;
}
.hero-collage .shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-collage::before {
    content: ""; position: absolute; inset: 8% 6% 6% 8%;
    background: linear-gradient(135deg, var(--green), var(--navy));
    filter: blur(46px); opacity: .28; border-radius: 40px; z-index: -1;
}
.glass-card {
    position: absolute; background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 18px; box-shadow: var(--shadow-soft);
    padding: .85rem 1.1rem; display: flex; align-items: center; gap: .7rem;
}
.glass-card .ic {
    width: 42px; height: 42px; border-radius: 12px; flex: 0 0 42px;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #fff;
}
.glass-card small { color: var(--muted); font-size: .76rem; display: block; }
.glass-card b { color: var(--navy); font-size: .98rem; }
.glass-tl { top: 4%; inset-inline-start: -4%; }
.glass-br { bottom: 6%; inset-inline-end: -4%; }
.float-y2 { animation: floatY 6s ease-in-out infinite alternate; }
.float-y3 { animation: floatY 7s ease-in-out infinite alternate-reverse; }

/* trust row under hero */
.trust-row { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; margin-top: 2.2rem; }
.trust-row .t { display: flex; flex-direction: column; }
.trust-row .t b { font-size: 1.5rem; color: var(--navy); font-family: "Poppins", sans-serif; }
.trust-row .t span { color: var(--muted); font-size: .85rem; }
.trust-sep { width: 1px; height: 38px; background: var(--line); }

/* ---------- Stats band ---------- */
.stats-band {
    background: linear-gradient(135deg, var(--navy) 0%, #2f3072 60%, var(--navy-d) 100%);
    color: #fff; border-radius: 28px; padding: 3rem 2rem; box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
}
.stats-band::before {
    content: ""; position: absolute; width: 22rem; height: 22rem; border-radius: 50%;
    background: radial-gradient(circle, rgba(68,178,38,.35), transparent 70%);
    top: -8rem; inset-inline-end: -6rem;
}
.stats-band .num {
    font-family: "Poppins", sans-serif; font-weight: 700;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem); color: #fff; line-height: 1;
}
.stats-band .lbl { color: #c9cae6; margin-top: .4rem; }

/* ---------- Photo category cards ---------- */
.cat-card {
    position: relative; border-radius: 22px; overflow: hidden;
    aspect-ratio: 1 / 1; display: block; box-shadow: var(--shadow-sm);
    isolation: isolate;
}
.cat-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.cat-card::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(37,38,94,0) 35%, rgba(37,38,94,.85) 100%);
}
.cat-card .cap {
    position: absolute; inset-inline: 0; bottom: 0; z-index: 2;
    padding: 1.1rem 1.2rem; color: #fff; display: flex; align-items: center; gap: .6rem;
}
.cat-card .cap i { color: var(--green); }
.cat-card .cap b { font-size: 1.15rem; }
.cat-card:hover img { transform: scale(1.09); }
.cat-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.cat-card { transition: transform .3s ease, box-shadow .3s ease; }

/* ---------- Steps (how it works) ---------- */
.step {
    background: #fff; border: 1px solid var(--line); border-radius: 20px;
    padding: 1.8rem; height: 100%; position: relative; transition: all .25s ease;
}
.step:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.step .n {
    width: 54px; height: 54px; border-radius: 16px;
    background: linear-gradient(135deg, var(--green), var(--green-d));
    color: #fff; font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
    box-shadow: 0 12px 22px -12px rgba(68,178,38,.7);
}
.step h5 { color: var(--navy); }
.step p { color: var(--muted); margin: 0; }

/* media frame (about / download) */
.media-frame {
    border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg);
    position: relative;
}
.media-frame img { width: 100%; display: block; }
.media-frame::before {
    content: ""; position: absolute; inset: auto -10% -12% -10%; height: 60%;
    background: radial-gradient(closest-side, rgba(68,178,38,.25), transparent);
    filter: blur(40px); z-index: -1;
}

/* feature cards refinement */
.feature-card { padding: 2.4rem 1.6rem; border-radius: 22px; }
.feature-icon {
    background: linear-gradient(135deg, var(--green-soft), #fff);
    box-shadow: inset 0 0 0 1px rgba(68,178,38,.2);
}

/* download section visual */
.download-wrap {
    background: linear-gradient(135deg, var(--navy) 0%, #2c2d68 100%);
    border-radius: 32px; padding: clamp(2rem,5vw,4rem); color: #fff;
    position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.download-wrap h2 { color: #fff; }
.download-wrap .lead-muted { color: #c9cae6; }
.download-wrap::before {
    content: ""; position: absolute; width: 26rem; height: 26rem; border-radius: 50%;
    background: radial-gradient(circle, rgba(68,178,38,.4), transparent 70%);
    bottom: -12rem; inset-inline-start: -8rem;
}
.download-wrap .store-btn { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); }
.download-wrap .store-btn:hover { background: var(--green); border-color: var(--green); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq .item {
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    margin-bottom: 1rem; overflow: hidden; transition: box-shadow .25s ease, border-color .25s ease;
}
.faq .item:has(.q[aria-expanded="true"]) { border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq .q {
    width: 100%; text-align: start; border: 0; background: transparent;
    padding: 1.25rem 1.4rem; font-weight: 700; color: var(--navy); font-size: 1.06rem;
    display: flex; align-items: center; gap: 1rem; cursor: pointer;
}
.faq .q .chev {
    margin-inline-start: auto; width: 32px; height: 32px; flex: 0 0 32px;
    border-radius: 50%; background: var(--green-soft); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    transition: transform .3s ease, background .25s ease, color .25s ease;
}
.faq .q[aria-expanded="true"] .chev { transform: rotate(180deg); background: var(--green); color: #fff; }
.faq .a { padding: 0 1.4rem 1.35rem; color: var(--muted); line-height: 2; }

/* ---------- CSS phone device mockup ---------- */
.device {
    width: 290px; max-width: 80vw; aspect-ratio: 9 / 19.5;
    margin: 0 auto; position: relative;
    background: #14152e;
    border-radius: 46px;
    padding: 11px;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, .06),
        0 50px 90px -30px rgba(0, 0, 0, .65),
        0 0 60px -10px rgba(68, 178, 38, .35);
}
.device::before {
    content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
    width: 96px; height: 26px; background: #14152e; border-radius: 999px; z-index: 3;
}
.device-screen {
    width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
    background: #fff; position: relative;
}
.device-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.device::after {
    content: ""; position: absolute; inset-inline: 38%; bottom: 9px; height: 4px;
    background: rgba(255, 255, 255, .35); border-radius: 999px; z-index: 3;
}
.device-glow { position: relative; }
.device-glow::before {
    content: ""; position: absolute; inset: 12% 12% 6%;
    background: linear-gradient(135deg, var(--green), #6fd44f);
    filter: blur(60px); opacity: .35; z-index: 0; border-radius: 50%;
}
.device-glow .device { position: relative; z-index: 1; }

@media (max-width: 991px) {
    .section { padding: 64px 0; }
    .hero { padding: 70px 0 56px; text-align: center; }
    .hero p { margin-inline: auto; }
    .hero .d-flex { justify-content: center; }
    .trust-row { justify-content: center; }
    .glass-tl { inset-inline-start: 2%; }
    .glass-br { inset-inline-end: 2%; }
    .device { width: 240px; }
}
