﻿/* =========================================
   Home/Index redesigned (NO gradients)
   Theme: Solid black #0b0b0f + red accents
   ========================================= */

:root {
    --home-bg: #0b0b0f;
    --home-text: rgba(255, 255, 255, 0.92);
    --home-muted: rgba(255, 255, 255, 0.70);
    --home-border: rgba(255, 255, 255, 0.12);
    --home-red: #ff2a2a;
    --home-red-2: #ff4b4b;
    --home-card: rgba(255, 255, 255, 0.05);
    --home-card-2: rgba(0, 0, 0, 0.22);
    --home-radius: 18px;
    --home-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
    --home-shadow2: 0 12px 34px rgba(0, 0, 0, 0.45);
    --home-ease: cubic-bezier(.2, .8, .2, 1);
    --home-ease-fast: cubic-bezier(.2, .9, .2, 1);
    /* ✅ Pill icons (SVG masks) */
    --icon-speed: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M3%2012h13%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27/%3E%3Cpath%20d%3D%27M13%205l7%207-7%207%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
    --icon-support: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M4%2013a8%208%200%200%201%2016%200%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20fill%3D%27none%27/%3E%3Cpath%20d%3D%27M4%2013v6a1%201%200%200%200%201%201h2v-8H5a1%201%200%200%200-1%201z%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linejoin%3D%27round%27%20fill%3D%27none%27/%3E%3Cpath%20d%3D%27M20%2013v6a1%201%200%200%201-1%201h-2v-8h2a1%201%200%200%201%201%201z%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linejoin%3D%27round%27%20fill%3D%27none%27/%3E%3C/svg%3E");
    --icon-premium: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M12%202l2.9%205.9%206.5%201-4.7%204.6%201.1%206.5L12%2018.9%206.2%2020l1.1-6.5L2.6%208.9l6.5-1L12%202z%27%20fill%3D%27%23000%27/%3E%3C/svg%3E");
}

/* ✅ While autoscroll running, disable CSS smooth scroll to avoid conflict */
html.home-autoscroll {
    scroll-behavior: auto !important;
}

/* Section helpers */
.section {
    padding: clamp(46px, 6vw, 74px) 0;
}

.section__head {
    max-width: 820px;
    margin: 0 auto 26px;
    text-align: center;
}

.section__title {
    margin: 0 0 10px;
    font-size: clamp(24px, 3.2vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section__subtitle {
    margin: 0;
    color: var(--home-muted);
    font-size: clamp(14px, 1.6vw, 17px);
    line-height: 1.65;
}

/* Hero (NO gradients) */
.home-hero {
    position: relative;
    padding: clamp(56px, 7vw, 82px) 0 clamp(44px, 6vw, 64px);
    overflow: hidden;
    background: transparent;
}

    .home-hero::before {
        content: none !important;
    }

.home-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(18px, 4vw, 34px);
    align-items: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--home-shadow2);
    transition: transform 220ms var(--home-ease), border-color 220ms var(--home-ease);
}

    .kicker:hover {
        transform: translateY(-1px);
        border-color: rgba(255, 255, 255, 0.16);
    }

.kicker__dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--home-red);
    box-shadow: 0 0 0 4px rgba(255, 42, 42, 0.14);
}

.kicker__text {
    font-weight: 800;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
}

.home-hero__title {
    margin: 16px 0 12px;
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.home-hero__subtitle {
    margin: 0 0 18px;
    max-width: 62ch;
    color: var(--home-muted);
    font-size: clamp(14px, 1.7vw, 17.5px);
}

.home-hero__cta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

/* Buttons (NO gradients) */
.btnx {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.25px;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    user-select: none;
    transition: transform 180ms var(--home-ease-fast), box-shadow 180ms var(--home-ease-fast), background-color 180ms var(--home-ease-fast), border-color 180ms var(--home-ease-fast), color 180ms var(--home-ease-fast);
    will-change: transform;
}

    .btnx::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 999px;
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(255, 42, 42, 0);
        transition: opacity 200ms var(--home-ease-fast), box-shadow 200ms var(--home-ease-fast);
        pointer-events: none;
    }

    .btnx:focus-visible {
        outline: none;
        box-shadow: 0 0 0 4px rgba(255, 42, 42, 0.20);
    }

.btnx--primary {
    color: #0b0b0f;
    background: var(--home-red);
    border-color: rgba(255, 42, 42, 0.55);
    box-shadow: 0 16px 32px rgba(255, 42, 42, 0.16), 0 14px 28px rgba(0, 0, 0, 0.45);
}

    .btnx--primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 22px 50px rgba(255, 42, 42, 0.22), 0 16px 30px rgba(0, 0, 0, 0.55);
    }

        .btnx--primary:hover::after {
            opacity: 1;
            box-shadow: 0 0 0 10px rgba(255, 42, 42, 0.10);
        }

.btnx--ghost {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
}

    .btnx--ghost:hover {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 255, 255, 0.20);
        box-shadow: 0 14px 38px rgba(0, 0, 0, 0.50);
    }

.btnx.is-pressed {
    transform: translateY(0) scale(0.98);
}

/* Hero meta pills */
.home-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 180ms var(--home-ease-fast), border-color 180ms var(--home-ease-fast);
}

    .pill:hover {
        transform: translateY(-1px);
        border-color: rgba(255, 255, 255, 0.18);
    }

/* ✅ UPDATED: Professional pill icons (no emoji) */
.pill__icon {
    --pill-icon: var(--icon-speed);
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(255, 42, 42, 0.12);
    border: 1px solid rgba(255, 42, 42, 0.38);
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    transition: transform 180ms var(--home-ease-fast), border-color 180ms var(--home-ease-fast), background-color 180ms var(--home-ease-fast);
}

.pill:hover .pill__icon {
    transform: scale(1.06);
    background: rgba(255, 42, 42, 0.16);
    border-color: rgba(255, 42, 42, 0.52);
}

.pill__icon::before {
    content: "";
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-mask: var(--pill-icon) center / contain no-repeat;
    mask: var(--pill-icon) center / contain no-repeat;
}

.pill__icon--shield {
    --pill-icon: var(--icon-support);
}

.pill__icon--spark {
    --pill-icon: var(--icon-premium);
}

.pill__text {
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.86);
}

/* Hero visual */
.home-hero__visual {
    position: relative;
    min-height: 340px;
    display: grid;
    place-items: center;
}

.orb, .hero-ring {
    display: none !important;
}

.glass-card {
    width: min(460px, 100%);
    border-radius: 22px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--home-shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 220ms var(--home-ease-fast), border-color 220ms var(--home-ease-fast);
}

    .glass-card:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.18);
    }

.glass-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.10);
    font-weight: 900;
    font-size: 12.5px;
    letter-spacing: 0.2px;
}

.signal {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    height: 16px;
}

.signal__bar {
    width: 4px;
    border-radius: 99px;
    background: rgba(255, 42, 42, 0.92);
    opacity: 0.9;
}

    .signal__bar:nth-child(1) {
        height: 8px;
    }

    .signal__bar:nth-child(2) {
        height: 12px;
    }

    .signal__bar:nth-child(3) {
        height: 16px;
    }

.glass-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mini {
    border-radius: 16px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 180ms var(--home-ease-fast), border-color 180ms var(--home-ease-fast);
}

    .mini:hover {
        transform: translateY(-1px);
        border-color: rgba(255, 255, 255, 0.18);
    }

.mini__label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 4px;
    font-weight: 800;
}

.mini__value {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.2px;
}

.glass-card__line {
    height: 1px;
    margin: 14px 0;
    background: rgba(255, 255, 255, 0.10);
}

.glass-card__bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stat__num {
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.02em;
    color: var(--home-red);
    text-shadow: 0 10px 24px rgba(255, 42, 42, 0.18);
}

.stat__txt {
    color: rgba(255, 255, 255, 0.74);
    font-weight: 800;
    font-size: 13px;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 800;
    font-size: 12.5px;
    opacity: 0.9;
    cursor: pointer;
    transition: transform 220ms var(--home-ease-fast), color 220ms var(--home-ease-fast);
}

    .scroll-hint:hover {
        color: rgba(255, 255, 255, 0.90);
        transform: translateX(-50%) translateY(-1px);
    }

.scroll-hint__mouse {
    width: 18px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    position: relative;
}

    .scroll-hint__mouse::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 6px;
        transform: translateX(-50%);
        width: 2px;
        height: 6px;
        border-radius: 999px;
        background: var(--home-red);
        animation: wheel 1.25s var(--home-ease) infinite;
    }

@keyframes wheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    70% {
        transform: translate(-50%, 9px);
        opacity: 0.25;
    }

    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Clients */
.section--clients {
    padding-top: clamp(40px, 5vw, 64px);
}

.clients-img {
    width: 100%;
    height: auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 0.98;
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(12px, 2.6vw, 18px);
}

.why {
    border-radius: var(--home-radius);
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--home-shadow2);
    transition: transform 200ms var(--home-ease-fast), box-shadow 200ms var(--home-ease-fast), border-color 200ms var(--home-ease-fast), background-color 200ms var(--home-ease-fast);
}

    .why:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.20);
        box-shadow: 0 24px 70px rgba(0,0,0,0.62);
    }

.why__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 28px rgba(0,0,0,0.45);
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 200ms var(--home-ease-fast), border-color 200ms var(--home-ease-fast);
}

.why:hover .why__icon {
    transform: translateY(-1px);
    border-color: rgba(255, 42, 42, 0.45);
}

.why__icon::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 42, 42, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 42, 42, 0.0);
    opacity: 0.0;
}

.why.is-in .why__icon::after {
    opacity: 1;
    animation: pulseDot 1400ms var(--home-ease) infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 42, 42, 0.00);
    }

    35% {
        box-shadow: 0 0 0 10px rgba(255, 42, 42, 0.12);
    }

    70% {
        box-shadow: 0 0 0 0 rgba(255, 42, 42, 0.00);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 42, 42, 0.00);
    }
}

.why__svg {
    width: 26px;
    height: 26px;
}

    .why__svg * {
        fill: none;
        stroke: rgba(255, 255, 255, 0.88);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-dasharray: 90;
        stroke-dashoffset: 90;
        opacity: 0.95;
    }

.why.is-in .why__svg * {
    animation: drawIcon 900ms var(--home-ease) forwards;
}

.why-grid .why:nth-child(1).is-in .why__svg * {
    animation-delay: 60ms;
}

.why-grid .why:nth-child(2).is-in .why__svg * {
    animation-delay: 120ms;
}

.why-grid .why:nth-child(3).is-in .why__svg * {
    animation-delay: 180ms;
}

.why-grid .why:nth-child(4).is-in .why__svg * {
    animation-delay: 240ms;
}

.why-grid .why:nth-child(5).is-in .why__svg * {
    animation-delay: 300ms;
}

@keyframes drawIcon {
    to {
        stroke-dashoffset: 0;
    }
}

.why__title {
    margin: 0 0 6px;
    font-size: 15.5px;
    font-weight: 950;
    letter-spacing: -0.01em;
}

.why__text {
    margin: 0;
    color: var(--home-muted);
    font-size: 13.5px;
}

/* FAQ */
.faq {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq__item {
    position: relative;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--home-shadow2);
    overflow: hidden;
    transform: translateZ(0);
    transition: border-color 200ms var(--home-ease-fast), transform 200ms var(--home-ease-fast);
}

    .faq__item.is-open {
        border-color: rgba(255, 42, 42, 0.35);
    }

.faq__q {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
    background: rgba(0,0,0,0.12);
    border: 0;
    color: rgba(255,255,255,0.94);
    font-weight: 950;
    font-size: 15px;
    text-align: left;
    cursor: pointer;
    transition: background-color 200ms var(--home-ease-fast);
}

    .faq__q:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .faq__q:focus-visible {
        outline: none;
        box-shadow: 0 0 0 4px rgba(255, 42, 42, 0.18);
    }

.faq__qtext {
    min-width: 0;
    line-height: 1.35;
}

.faq__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.22);
    box-shadow: 0 10px 22px rgba(0,0,0,0.30);
    position: relative;
    flex: 0 0 auto;
    transition: transform 260ms var(--home-ease), background-color 260ms var(--home-ease), border-color 260ms var(--home-ease);
}

    .faq__icon::before, .faq__icon::after {
        content: "";
        position: absolute;
        inset: 0;
        margin: auto;
        width: 14px;
        height: 2px;
        border-radius: 99px;
        background: rgba(255,255,255,0.88);
        transition: transform 260ms var(--home-ease);
    }

    .faq__icon::after {
        transform: rotate(90deg);
    }

.faq__item.is-open .faq__icon {
    background: rgba(255, 42, 42, 0.10);
    border-color: rgba(255,255,255,0.18);
    transform: rotate(180deg);
}

    .faq__item.is-open .faq__icon::after {
        transform: rotate(0deg);
    }

.faq__aWrap {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 420ms var(--home-ease);
    will-change: max-height;
}

.faq__a {
    padding: 0 16px 16px;
    color: rgba(255,255,255,0.76);
    font-size: 14px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 260ms var(--home-ease-fast), transform 260ms var(--home-ease-fast);
}

.faq__item.is-open .faq__a {
    opacity: 1;
    transform: translateY(0);
}

/* Contact */
.section--contact {
    padding-bottom: clamp(60px, 7vw, 90px);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(14px, 3vw, 22px);
    align-items: stretch;
}

.contact-left, .contact-right {
    border-radius: var(--home-radius);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: var(--home-shadow2);
    padding: clamp(16px, 2.4vw, 22px);
}

.contact-title {
    margin: 0 0 10px;
    font-size: clamp(22px, 3.2vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    margin: 0 0 14px;
    color: var(--home-muted);
}

.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.contact-card {
    display: grid;
    gap: 12px;
}

.contact-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.10);
    transition: border-color 180ms var(--home-ease-fast), transform 180ms var(--home-ease-fast);
}

    .contact-row:hover {
        border-color: rgba(255,255,255,0.18);
        transform: translateY(-1px);
    }

.contact-k {
    font-weight: 950;
    color: rgba(255,255,255,0.86);
}

.contact-v {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.contact-val {
    color: rgba(255,255,255,0.78);
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-link {
    color: rgba(255,255,255,0.90);
    text-decoration: none;
    font-weight: 900;
}

    .contact-link:hover {
        text-decoration: underline;
    }

.mini-btn {
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.92);
    font-weight: 950;
    cursor: pointer;
    transition: transform 160ms var(--home-ease-fast), background-color 160ms var(--home-ease-fast), border-color 160ms var(--home-ease-fast);
    flex: 0 0 auto;
}

    .mini-btn:hover, .mini-btn:focus-visible {
        outline: none;
        transform: translateY(-1px);
        background: rgba(255,255,255,0.09);
        border-color: rgba(255,255,255,0.18);
    }

.contact-note {
    margin-top: 6px;
    color: rgba(255,255,255,0.70);
    font-size: 13px;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 520ms var(--home-ease), transform 520ms var(--home-ease);
}

    .reveal.is-in {
        opacity: 1;
        transform: translateY(0);
    }

/* ✅ Home Toast (bottom-right) - ManageUser style */
.home-toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1400;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.78);
    border: 1px solid rgba(255,255,255,0.18);
    border-left: 3px solid var(--home-red);
    color: rgba(255,255,255,0.95);
    padding: 12px 14px;
    border-radius: 14px;
    max-width: min(380px, calc(100vw - 36px));
    box-shadow: var(--home-shadow2);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 180ms var(--home-ease-fast), transform 180ms var(--home-ease-fast);
}

    .home-toast::before {
        content: "";
        width: 18px;
        height: 18px;
        border-radius: 10px;
        background: rgba(255, 42, 42, 0.14);
        border: 1px solid rgba(255, 42, 42, 0.35);
        box-shadow: 0 12px 26px rgba(0,0,0,0.35);
        -webkit-mask: none;
        mask: none;
    }

    .home-toast.is-show {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 520px) {
    .home-toast {
        right: 14px;
        bottom: 14px;
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-hero {
        padding-top: 2px !important;
    }

    .home-hero__inner {
        grid-template-columns: 1fr;
    }

    .home-hero__visual {
        order: -1;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-row {
        grid-template-columns: 80px 1fr;
    }

    .btnx {
        height: 42px;
        padding: 0 16px;
    }

    .pill__text {
        font-size: 11px;
        font-weight: 600;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal, .btnx, .why, .faq__aWrap, .faq__a, .scroll-hint__mouse::after, .why__svg *, .home-toast {
        transition: none !important;
        animation: none !important;
    }
}

/* =========================================
   ✅ Featured Services (Hero right card)
   Keep existing theme (solid dark + red accent)
   ========================================= */

.glass-card[data-featured-services] {
    padding-bottom: 14px;
}

.fs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
}

/* Clickable item */
.fs-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    transition: transform 180ms var(--home-ease-fast), border-color 180ms var(--home-ease-fast), background-color 180ms var(--home-ease-fast), box-shadow 180ms var(--home-ease-fast);
    min-height: 60px;
}

    .fs-item:hover {
        transform: translateY(-1px);
        border-color: rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 14px 34px rgba(0,0,0,0.45);
    }

.fs-thumb {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    flex: 0 0 auto;
    background: rgba(255, 42, 42, 0.10);
    border: 1px solid rgba(255, 42, 42, 0.28);
    overflow: hidden;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

    .fs-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.fs-ph {
    font-weight: 950;
    font-size: 14px;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.92);
    text-transform: uppercase;
}

.fs-title {
    font-weight: 950;
    font-size: 13.5px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer link */
.fs-foot {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.10);
    display: flex;
    justify-content: flex-end;
}

.fs-all {
    text-decoration: none;
    font-weight: 950;
    font-size: 13px;
    color: rgba(255,255,255,0.84);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    transition: transform 180ms var(--home-ease-fast), background-color 180ms var(--home-ease-fast), border-color 180ms var(--home-ease-fast);
}

    .fs-all:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,0.07);
        border-color: rgba(255,255,255,0.18);
    }

.fs-arrow {
    color: var(--home-red);
    font-weight: 950;
}

/* Skeleton */
.fs-skel {
    height: 60px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    position: relative;
    overflow: hidden;
}

    .fs-skel::after {
        content: "";
        position: absolute;
        inset: 0;
        transform: translateX(-60%);
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent );
        animation: fsShimmer 1.15s linear infinite;
    }

@keyframes fsShimmer {
    to {
        transform: translateX(60%);
    }
}

.fs-empty {
    grid-column: 1 / -1;
    padding: 14px 12px;
    border-radius: 16px;
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.76);
    font-weight: 850;
    font-size: 13.5px;
}

@media (max-width: 520px) {
    .fs-grid {
        grid-template-columns: 1fr;
    }
}
