/* ============================================================
   Fido General Trading — Distinct brand system
   Black + forest green + citrus orange (NOT Midmar gold)
   ============================================================ */
:root {
    --ink: #0b0f0c;
    --ink-soft: #1a221c;
    --green: #0f3d24;
    --green-deep: #071a10;
    --green-mid: #1a6b3c;
    --green-soft: #e8f3ec;
    --orange: #e07a2f;
    --orange-deep: #c45f18;
    --orange-soft: #fff1e6;
    --cream: #f7f4ef;
    --white: #ffffff;
    --muted: #5e6a62;
    --line: rgba(15, 61, 36, .12);
    --shadow: 0 18px 48px rgba(7, 26, 16, .14);
    --shadow-sm: 0 8px 24px rgba(7, 26, 16, .1);
    --radius: 18px;
    --radius-sm: 12px;
    --font: 'Tajawal', 'Manrope', system-ui, sans-serif;
    --font-en: 'Manrope', 'Tajawal', system-ui, sans-serif;
    --transition: .35s cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    overflow-x: clip;
}
@supports (overflow-x: clip) {
    html, body { overflow-x: clip; }
}
body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overscroll-behavior-y: none;
}
html[lang="en"] body { font-family: var(--font-en); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { width: min(1180px, 92%); margin-inline: auto; }
.ltr { direction: ltr; unicode-bidi: isolate; }

/* ---------- Top ribbon (different from Midmar announce-bar) ---------- */
.top-ribbon {
    background: var(--ink);
    color: #dce8e1;
    font-size: .88rem;
    padding: .55rem 0;
    border-bottom: 3px solid var(--orange);
    text-align: center;
}
.top-ribbon a { color: var(--orange); font-weight: 800; }
.top-ribbon a:hover { color: #ffb06a; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 999;
    background: rgba(247, 244, 239, .94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
    display: flex; align-items: center; gap: 1.2rem;
    min-height: 74px;
}
.brand { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.brand img {
    height: 52px; width: auto;
    background: #fff; border-radius: 12px; padding: 6px 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.brand-text { line-height: 1.2; }
.brand-name { display: block; font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.brand-sub {
    display: block; font-size: .7rem; letter-spacing: .14em;
    text-transform: uppercase; color: var(--green-mid); font-weight: 700;
}

.main-nav { margin-inline-start: auto; }
.main-nav ul { display: flex; gap: 1.5rem; align-items: center; }
.main-nav a {
    font-weight: 700; font-size: .98rem; color: var(--ink-soft);
    position: relative; padding-block: .35rem;
}
.main-nav a::after {
    content: ""; position: absolute; inset-inline-start: 0; bottom: 0;
    width: 0; height: 2.5px; background: var(--orange); transition: width .3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--green); }
.nav-close, .nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle { width: 42px; height: 42px; border-radius: 10px; }
.nav-toggle span {
    display: block; height: 2px; background: var(--ink);
    margin: 6px 8px; border-radius: 2px; transition: .3s;
}

.header-actions { display: flex; align-items: center; gap: .65rem; }
.lang-switch {
    width: 40px; height: 40px; border-radius: 50%;
    display: grid; place-items: center;
    border: 1.5px solid var(--green); color: var(--green);
    font-weight: 800; font-size: .85rem;
}
.lang-switch:hover { background: var(--green); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
    min-height: 48px; padding: .75rem 1.6rem; border-radius: 999px;
    font-weight: 800; font-family: inherit; font-size: .98rem;
    border: 0; cursor: pointer; transition: var(--transition);
}
.btn-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: #fff; box-shadow: 0 10px 24px rgba(224, 122, 47, .28);
}
.btn-orange:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-dark {
    background: var(--ink); color: #fff;
}
.btn-dark:hover { background: var(--green); }
.btn-outline {
    background: transparent; color: #fff;
    border: 1.5px solid rgba(255,255,255,.7);
}
.btn-outline:hover { background: #fff; color: var(--ink); }
.btn-outline-dark {
    background: transparent; color: var(--ink);
    border: 1.5px solid var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: #fff; }
.btn-green {
    background: var(--green); color: #fff;
}

/* ---------- Hero slider ---------- */
.hero-slider {
    position: relative; min-height: 88svh;
    color: #fff; overflow: hidden; isolation: isolate;
}
.hs-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.hs-slide.active { opacity: 1; z-index: 1; }
.hs-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.08);
    animation: kenburns 14s ease-out forwards;
}
.hs-slide.active .hs-bg { animation: kenburns 14s ease-out forwards; }
.hs-bg::after {
    content: ""; position: absolute; inset: 0;
    background:
        linear-gradient(105deg, rgba(7,26,16,.82) 0%, rgba(7,26,16,.45) 55%, rgba(11,15,12,.35) 100%),
        linear-gradient(0deg, rgba(7,26,16,.55), transparent 45%);
}
.hs-caption {
    position: relative; z-index: 3;
    padding-block: 7rem 6rem;
    max-width: 720px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(224,122,47,.18); border: 1px solid rgba(224,122,47,.55);
    color: #ffd2a8; border-radius: 999px; padding: .4rem .95rem;
    font-size: .88rem; font-weight: 700; margin-bottom: 1.1rem;
}
.hs-caption h1 {
    font-size: clamp(1.85rem, 5.2vw, 3.2rem);
    line-height: 1.28; font-weight: 800; margin-bottom: 1rem;
}
.hs-caption h1 .accent {
    color: var(--orange);
    background: linear-gradient(90deg, #ffb06a, var(--orange), #ffb06a);
    background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}
.hero-sub { color: rgba(247,244,239,.88); font-size: 1.05rem; margin-bottom: 1.6rem; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hs-dots {
    position: absolute; bottom: 28px; inset-inline-start: 0; width: 100%;
    display: flex; justify-content: center; gap: .45rem; z-index: 5;
}
.hs-dot {
    width: 34px; height: 3px; border: 0; border-radius: 3px;
    background: rgba(255,255,255,.35); cursor: pointer;
}
.hs-dot.active { background: var(--orange); }
.hs-arrows {
    position: absolute; inset-inline-end: 28px; bottom: 22px;
    display: flex; gap: .5rem; z-index: 5;
}
.hs-arrow {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.45); background: rgba(7,26,16,.35);
    color: #fff; font-size: 1.4rem; cursor: pointer;
}
.hs-arrow:hover { background: var(--orange); border-color: var(--orange); }

/* ---------- Sections ---------- */
section { padding-block: 5rem; }
.eyebrow {
    display: inline-block; color: var(--orange-deep); font-weight: 800;
    font-size: .88rem; letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: .55rem;
}
.section-head { margin-bottom: 2.4rem; }
.section-head.center { text-align: center; }
.section-head h2 {
    font-size: clamp(1.55rem, 3.5vw, 2.35rem);
    font-weight: 800; color: var(--ink); line-height: 1.3;
}
.section-head.center h2::after {
    content: ""; display: block; width: 64px; height: 3px;
    margin: .85rem auto 0; border-radius: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.section-head p { color: var(--muted); max-width: 640px; margin-top: .7rem; }
.section-head.center p { margin-inline: auto; }

/* ---------- Feature strip (unique Fido layout) ---------- */
.feature-strip {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
    margin-top: -3.2rem; position: relative; z-index: 4;
}
.feature-tile {
    background: #fff; border-radius: var(--radius); padding: 1.5rem 1.35rem;
    box-shadow: var(--shadow); border-top: 4px solid var(--orange);
    transition: var(--transition);
}
.feature-tile:nth-child(2) { border-top-color: var(--green-mid); }
.feature-tile:nth-child(3) { border-top-color: var(--ink); }
.feature-tile:hover { transform: translateY(-6px); }
.feature-tile .ico { width: 56px; height: 56px; border-radius: 50%; margin-bottom: .9rem;
    object-fit: cover; border: 2px solid rgba(224,122,47,.4); }
.feature-tile h3 { font-size: 1.08rem; margin-bottom: .4rem; color: var(--ink); }
.feature-tile p { color: var(--muted); font-size: .95rem; }

/* ---------- About split ---------- */
.about-grid {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center;
}
.about-media {
    position: relative; border-radius: 22px; overflow: hidden;
    box-shadow: var(--shadow); aspect-ratio: 4/5;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media .stamp {
    position: absolute; bottom: 18px; inset-inline-start: 18px;
    background: rgba(255,255,255,.95); border-radius: 14px; padding: .7rem 1rem;
    box-shadow: var(--shadow-sm); font-weight: 800; color: var(--green);
    border-inline-start: 4px solid var(--orange);
}
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1.6rem; }
.stat-card {
    background: var(--green-soft); border-radius: var(--radius-sm);
    padding: 1rem .7rem; text-align: center;
}
.stat-card .num { font-size: 1.6rem; font-weight: 800; color: var(--green); }
.stat-card .lbl { font-size: .8rem; color: var(--muted); font-weight: 600; }

/* ---------- Products ---------- */
.products { background: #fff; }
.products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.product-card {
    background: var(--cream); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); transition: var(--transition);
    display: flex; flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px); box-shadow: var(--shadow);
    border-color: rgba(224,122,47,.35);
}
.product-media { position: relative; aspect-ratio: 1; overflow: hidden; background: #fff; }
.product-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.product-card:hover .product-media img { transform: scale(1.06); }
.product-tag {
    position: absolute; top: 14px; inset-inline-start: 14px;
    background: var(--ink); color: #fff; font-size: .75rem; font-weight: 800;
    padding: .3rem .7rem; border-radius: 999px;
}
.product-body { padding: 1.2rem 1.25rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 1.12rem; margin-bottom: .45rem; color: var(--ink); }
.product-body p { color: var(--muted); font-size: .94rem; flex: 1; }
.product-link {
    margin-top: 1rem; color: var(--orange-deep); font-weight: 800; font-size: .92rem;
}
.product-link:hover { color: var(--green); }

/* Full product page cards */
.product-detail {
    display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem;
    background: #fff; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.product-detail .pd-media { min-height: 280px; }
.product-detail .pd-media img { width: 100%; height: 100%; object-fit: cover; }
.product-detail .pd-body { padding: 1.8rem 1.6rem; }
.product-detail .origin {
    display: inline-flex; align-items: center; gap: .35rem;
    background: var(--orange-soft); color: var(--orange-deep);
    font-weight: 800; font-size: .82rem; padding: .3rem .75rem;
    border-radius: 999px; margin-bottom: .8rem;
}
.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.chip {
    background: var(--green-soft); color: var(--green);
    border-radius: 999px; padding: .3rem .75rem; font-size: .8rem; font-weight: 700;
}

/* ---------- Synergy / Midmar bridge ---------- */
.synergy {
    position: relative; color: #fff; text-align: center;
    padding-block: 5.5rem; overflow: hidden;
    background: var(--green-deep);
}
.synergy::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(800px 400px at 20% 20%, rgba(224,122,47,.25), transparent 60%),
        radial-gradient(700px 380px at 90% 80%, rgba(26,107,60,.4), transparent 55%);
}
.synergy-inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.synergy h2 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); margin-bottom: 1rem; }
.synergy p { color: rgba(247,244,239,.85); margin-bottom: 1.8rem; }

/* ---------- Page hero ---------- */
.page-hero {
    position: relative; color: #fff; overflow: hidden; isolation: isolate;
    min-height: 42vh; display: grid; align-items: end;
}
.page-hero .ph-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    animation: pageHeroZoom 8s ease-out forwards;
}
.page-hero .ph-bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7,26,16,.35), rgba(7,26,16,.88));
}
.page-hero .container { position: relative; z-index: 2; padding-block: 6rem 3.5rem; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
.page-hero p { color: rgba(247,244,239,.85); max-width: 560px; margin-top: .6rem; }
.breadcrumb { color: rgba(255,255,255,.7); font-size: .9rem; margin-top: .9rem; }
.breadcrumb a { color: var(--orange); font-weight: 700; }

/* ---------- Values / steps ---------- */
.values-grid, .steps-grid, .counters-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.value-card, .step-card, .counter-item {
    background: #fff; border-radius: var(--radius); padding: 1.5rem 1.2rem;
    border: 1px solid var(--line); text-align: center; transition: var(--transition);
}
.value-card:hover, .step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.value-card .ico, .step-card .ico, .counter-item .ico {
    width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1rem;
    object-fit: cover; border: 2px solid rgba(224,122,47,.45);
}
.counter-item .c-num { font-size: 2rem; font-weight: 800; color: var(--green); }
.counter-item .c-lbl { color: var(--muted); font-weight: 600; font-size: .9rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.4rem; }
.contact-cards { display: grid; gap: 1rem; }
.contact-card {
    display: flex; gap: 1rem; align-items: center;
    background: #fff; border-radius: var(--radius); padding: 1.15rem 1.2rem;
    border: 1px solid var(--line); transition: var(--transition);
}
.contact-card:hover { border-color: var(--orange); transform: translateX(-4px); }
html[lang="en"] .contact-card:hover { transform: translateX(4px); }
.contact-card .ico {
    width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
    border: 2px solid rgba(15,61,36,.2); flex-shrink: 0;
}
.contact-card .c-label { font-size: .8rem; color: var(--muted); font-weight: 700; }
.contact-card .c-value { font-weight: 800; color: var(--ink); }
.contact-form {
    background: #fff; border-radius: var(--radius); padding: 1.8rem;
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: .3rem; color: var(--ink); }
.form-grid input, .form-grid select, .form-grid textarea {
    width: 100%; padding: .75rem .9rem; border-radius: 12px;
    border: 1.5px solid #d5ddd8; font-family: inherit; background: #fff; color: var(--ink);
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
    outline: none; border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(224,122,47,.18);
}
.form-grid textarea { min-height: 120px; resize: vertical; }

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(120deg, var(--ink), var(--green-deep));
    color: #fff; border-radius: 22px; padding: 2.6rem 2.2rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1.4rem;
    position: relative; overflow: hidden;
}
.cta-band::after {
    content: ""; position: absolute; width: 220px; height: 220px;
    border-radius: 50%; background: rgba(224,122,47,.18);
    inset-inline-end: -40px; top: -60px;
}
.cta-band h2 { font-size: clamp(1.3rem, 2.5vw, 1.85rem); position: relative; z-index: 1; }
.cta-band p { color: rgba(247,244,239,.75); position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink); color: #c9d5ce; padding-block: 3.5rem 1.5rem;
}
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.2rem;
    margin-bottom: 2.2rem;
}
.footer-brand img {
    height: 56px; background: #fff; border-radius: 12px; padding: 6px 10px; margin-bottom: 1rem;
}
.footer-brand p { color: #9fb3a7; font-size: .95rem; }
.footer-col h4 { color: #fff; margin-bottom: .9rem; font-size: 1.05rem; }
.footer-col a:hover { color: var(--orange); }
.footer-contact li {
    display: flex; align-items: center; gap: .55rem; margin-bottom: .55rem;
}
.footer-contact .ico {
    width: 26px; height: 26px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.2rem;
    text-align: center; font-size: .88rem; color: #7f9188;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
    position: fixed; bottom: 26px; inset-inline-end: 26px; z-index: 998;
    width: 58px; height: 58px; border-radius: 50%;
    display: grid; place-items: center; background: #25d366; color: #fff;
    box-shadow: 0 10px 26px rgba(37,211,102,.45);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }

/* ---------- Icons ---------- */
.ico {
    width: 56px; height: 56px; object-fit: cover; border-radius: 50%;
    display: block; box-shadow: 0 6px 16px rgba(7,26,16,.15);
    border: 2px solid rgba(224,122,47,.4); background: #fff;
    transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s;
}
.ico-inline { width: 22px; height: 22px; display: inline-block; vertical-align: -5px; margin-inline: .2rem; border-width: 1px; }

/* ---------- Animations ---------- */
@keyframes kenburns {
    0% { transform: scale(1.08) translate(0,0); }
    100% { transform: scale(1.16) translate(-1.2%, 1%); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes pageHeroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes riseIn {
    from { opacity: 0; transform: translateY(36px); }
    to { opacity: 1; transform: none; }
}
.anim-float { animation: floatY 4s ease-in-out infinite; }
.reveal {
    opacity: 0; transform: translateY(36px);
    transition: opacity .85s ease, transform .85s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ---------- Marquee ---------- */
.marquee-wrap {
    overflow: hidden; background: var(--ink);
    padding-block: 1rem; border-block: 1px solid rgba(224,122,47,.3);
}
.marquee-track {
    display: flex; width: max-content; gap: 2.8rem;
    animation: marquee 28s linear infinite;
}
html[dir="rtl"] .marquee-track { --marq-dir: -1; }
@keyframes marquee {
    to { transform: translateX(calc(-50% * var(--marq-dir, 1))); }
}
.marquee-item {
    display: inline-flex; align-items: center; gap: .55rem;
    color: #dce8e1; font-weight: 700; white-space: nowrap;
}
.marquee-item .ico { width: 32px; height: 32px; }
.mi-star { color: var(--orange); }

/* ---------- Mobile tab bar ---------- */
.app-tabbar { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .feature-strip, .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid, .product-detail { grid-template-columns: 1fr; }
    .values-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail .pd-media { min-height: 240px; }
}
@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
        background: var(--green-deep); padding: calc(4.6rem + env(safe-area-inset-top)) 2rem 2rem;
        transform: translateX(var(--drawer-hide, 100%));
        transition: transform .45s cubic-bezier(.22,.61,.36,1), visibility .45s;
        z-index: 1000; margin-inline-start: 0; visibility: hidden;
    }
    html[dir="rtl"] .main-nav { inset: 0 auto 0 0; --drawer-hide: -100%; }
    .main-nav.open { transform: translateX(0); visibility: visible; }
    .main-nav ul { flex-direction: column; align-items: flex-start; gap: 1.3rem; }
    .main-nav a { color: #f7f4ef; font-size: 1.12rem; }
    .nav-overlay {
        position: fixed; inset: 0; background: rgba(7,26,16,.55);
        backdrop-filter: blur(3px); opacity: 0; pointer-events: none;
        transition: opacity .4s; z-index: 999;
    }
    .nav-overlay.show { opacity: 1; pointer-events: auto; }
    .nav-close {
        display: block; position: absolute; top: 1.2rem; inset-inline-end: 1.2rem;
        color: #fff; font-size: 1.7rem;
    }
    .header-cta { display: none; }
    .app-tabbar {
        display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
        background: rgba(11,15,12,.95); backdrop-filter: blur(14px);
        border-top: 1px solid rgba(224,122,47,.35);
        padding-bottom: env(safe-area-inset-bottom);
    }
    .app-tabbar ul { display: flex; margin: 0; padding: 0; }
    .app-tabbar li { flex: 1; min-width: 0; }
    .app-tabbar a {
        display: flex; flex-direction: column; align-items: center; gap: 3px;
        padding: 9px 2px 8px; color: #a8b8af; font-size: .68rem; font-weight: 700;
    }
    .app-tabbar a svg { width: 22px; height: 22px; fill: currentColor; }
    .app-tabbar a.active { color: var(--orange); }
    .app-tabbar a.active::before {
        content: ""; position: absolute; top: 0; width: 32px; height: 3px;
        border-radius: 0 0 4px 4px; background: var(--orange);
    }
    .app-tabbar a { position: relative; }
    html.has-tabbar body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
    html.has-tabbar .wa-float { bottom: calc(78px + env(safe-area-inset-bottom)); }
    .hero-slider { min-height: 86svh; }
    .hs-caption { padding-block: 4.5rem 5.5rem; }
    .hs-arrows { display: none; }
    .feature-strip { margin-top: 1.5rem; grid-template-columns: 1fr; }
    section { padding-block: 3.4rem; }
    input, select, textarea { font-size: 16px !important; }
}
@media (max-width: 620px) {
    .products-grid, .counters-grid, .values-grid, .steps-grid, .footer-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .cta-band { flex-direction: column; text-align: center; }
    .cta-band .btn { width: 100%; }
    .hero-actions .btn { width: 100%; }
    .brand-sub { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
