/* ============================================================
   TalebPro design tokens — "Fresh Teal" refresh.
   Keeps the original Material-3-style token names (--tp-*) so
   existing views keep working, and swaps the palette to a calm
   teal/mint academic direction (education teal + grade green +
   course amber). Tokens are exposed both as CSS variables and
   as Tailwind utility classes configured in _Layout.cshtml
   (bg-tp-primary, text-tp-on-surface, ...).
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@500&family=Tajawal:wght@400;500;700;800&display=swap');

:root {
    /* legacy aliases kept so any remaining bg-brand/text-brand utility classes still resolve */
    --brand: #0f2f2a;
    --brand-light: #f8f9ff;

    /* ---- base tonal palette (teal-tinted neutrals) ---- */
    --tp-surface: #f3faf8;
    --tp-surface-dim: #bfe4db;
    --tp-surface-bright: #f8fcfb;
    --tp-surface-lowest: #ffffff;
    --tp-surface-low: #e6f5f1;
    --tp-surface-container: #d5eee8;
    --tp-surface-high: #cdeae3;
    --tp-surface-highest: #c5e6de;
    --tp-on-surface: #0f2f2a;
    --tp-on-surface-variant: #425c56;
    --tp-inverse-surface: #134e4a;
    --tp-inverse-on-surface: #d9f5ef;
    --tp-outline: #708b85;
    --tp-outline-variant: #c2d6d0;

    --tp-primary: #0d9488;
    --tp-on-primary: #ffffff;
    --tp-primary-container: #14b8a6;
    --tp-on-primary-container: #042f2a;
    --tp-inverse-primary: #5eead4;

    --tp-secondary: #15803d;
    --tp-on-secondary: #ffffff;
    --tp-secondary-container: #bbf7d0;
    --tp-on-secondary-container: #14532d;

    --tp-tertiary: #b45309;
    --tp-on-tertiary: #ffffff;
    --tp-tertiary-container: #fbbf24;
    --tp-on-tertiary-container: #7c2d12;

    --tp-error: #dc2626;
    --tp-on-error: #ffffff;
    --tp-error-container: #ffdad6;
    --tp-on-error-container: #93000a;

    --tp-navy: #0f2f2a;
    --tp-navy-2: #134e4a;
    --tp-success-light: #ECFDF5;
    --tp-warning-light: #FFFBEB;

    /* ---- vibrant accent family (kept for icon/chip tones) ---- */
    --tp-violet: #7c3aed;
    --tp-violet-soft: #ede9fe;
    --tp-indigo: #4f46e5;
    --tp-indigo-soft: #e0e7ff;
    --tp-amber: #f59e0b;
    --tp-amber-soft: #fef3c7;
    --tp-pink: #db2777;
    --tp-pink-soft: #fce7f3;
    --tp-cyan: #0891b2;
    --tp-cyan-soft: #cffafe;

    --tp-gradient-brand: linear-gradient(135deg, #0f2f2a 0%, #134e4a 50%, #0d9488 130%);
    --tp-gradient-vibrant: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
    --tp-gradient-sunset: linear-gradient(135deg, #f59e0b 0%, #db2777 100%);
    --tp-gradient-mint: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
    --tp-glow-blue: 0 10px 40px -8px rgba(13, 148, 136, .45);
    --tp-glow-violet: 0 10px 40px -8px rgba(6, 182, 212, .5);

    /* legacy names some older markup still references */
    --tp-blue: var(--tp-primary);
    --tp-blue-dark: #0b7a70;
    --tp-blue-tint: var(--tp-surface-low);
    --tp-ink: var(--tp-on-surface);
    --tp-bg: var(--tp-surface);
    --tp-card: var(--tp-surface-lowest);
    --tp-line: var(--tp-outline-variant);
    --tp-gold: #f5a623;
    --tp-green: var(--tp-secondary);
    --tp-muted: var(--tp-on-surface-variant);

    /* ---- spacing / radius scale ---- */
    --tp-radius-sm: 0.5rem;
    --tp-radius-md: 0.75rem;
    --tp-radius-lg: 1rem;
    --tp-radius-xl: 1.5rem;
    --tp-radius-2xl: 2rem;
    --tp-shadow-low: 0 1px 3px 0 rgba(15, 23, 42, .08), 0 1px 2px -1px rgba(15, 23, 42, .08);
    --tp-shadow-high: 0 20px 40px -12px rgba(15, 23, 42, .18), 0 8px 16px -8px rgba(15, 23, 42, .12);
}

html.dark body { color-scheme: dark; }

body {
    font-family: 'Inter', 'Tajawal', system-ui, sans-serif;
    background: var(--tp-surface);
    color: var(--tp-on-surface);
    -webkit-font-smoothing: antialiased;
}
html[dir="rtl"] body { font-family: 'Tajawal', 'Inter', system-ui, sans-serif; }

.dark body { background: var(--tp-navy); color: var(--tp-inverse-on-surface); }

h1, h2, h3, h4, h5, h6, .tp-display, .tp-headline {
    font-family: 'Hanken Grotesk', 'Tajawal', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--tp-navy);
}
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3,
html[dir="rtl"] h4, html[dir="rtl"] h5, html[dir="rtl"] h6 { letter-spacing: 0; }
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6, .dark .tp-display { color: var(--tp-inverse-on-surface); }

.tp-label-caps {
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* ---------- surfaces & hero ---------- */
.hero-gradient {
    background: linear-gradient(135deg, var(--tp-navy) 0%, #134e4a 55%, var(--tp-primary) 130%);
}

.tp-gradient-text {
    background: var(--tp-gradient-vibrant);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.dark .tp-gradient-text { background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%); -webkit-background-clip: text; background-clip: text; }

.tp-soft-blob { position: absolute; border-radius: 9999px; filter: blur(70px); opacity: .5; pointer-events: none; }

.tp-card {
    background: var(--tp-card);
    border: 1px solid var(--tp-line);
    border-radius: var(--tp-radius-lg);
    box-shadow: var(--tp-shadow-low);
}
.dark .tp-card { background: #102e28; border-color: #1c423a; }

.card-hover { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--tp-shadow-high); }

.stat-counter { font-variant-numeric: tabular-nums; font-family: 'Hanken Grotesk', sans-serif; }

/* ---------- buttons / pills ---------- */
.btn-tp-primary {
    background: var(--tp-primary);
    color: #fff;
    border: none;
    border-radius: var(--tp-radius-md);
    font-weight: 700;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-tp-primary:hover { background: var(--tp-primary-container); color: #fff; transform: translateY(-1px); box-shadow: var(--tp-glow-blue); }

.btn-tp-gradient {
    background: var(--tp-gradient-vibrant);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: var(--tp-glow-violet);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-tp-gradient:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 14px 44px -8px rgba(124, 58, 237, .55); }

.btn-tp-ghost {
    background: var(--tp-surface-lowest);
    color: var(--tp-on-surface);
    border: 1px solid var(--tp-outline-variant);
    border-radius: 999px;
    font-weight: 600;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-tp-ghost:hover { background: var(--tp-surface-low); border-color: var(--tp-primary); color: var(--tp-on-surface); transform: translateY(-1px); }

.tp-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: var(--tp-surface-low);
    color: var(--tp-primary);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: .72rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: .3rem .7rem;
}
.dark .tp-pill { background: rgba(13,148,136,.18); color: #6ee7d8; }

.tp-rating {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: #fff;
    color: var(--tp-on-surface);
    font-weight: 700;
    border-radius: 999px;
    padding: .25rem .6rem;
    box-shadow: var(--tp-shadow-low);
    font-size: .82rem;
}
.tp-rating i, .tp-rating .material-symbols-outlined { color: var(--tp-tertiary); font-size: 1em; }

/* ---------- signature: progress ring (legacy conic version, still used as a fallback) ---------- */
.tp-ring {
    --pct: 0;
    --ring-color: var(--tp-primary);
    width: 116px;
    height: 116px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(var(--ring-color) calc(var(--pct) * 1%), rgba(255,255,255,.14) 0);
}
.tp-ring-inner {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--tp-navy);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    line-height: 1.1;
}
.tp-ring.light .tp-ring-inner { background: #fff; color: var(--tp-ink); }
.tp-ring.light { background: conic-gradient(var(--ring-color) calc(var(--pct) * 1%), var(--tp-line) 0); }

/* ---------- sidebar filter ---------- */
.tp-filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    padding: .72rem 1rem;
    border-radius: 999px;
    color: var(--tp-on-surface-variant);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    background: var(--tp-surface-lowest);
    border: 1px solid var(--tp-outline-variant);
    box-shadow: var(--tp-shadow-low);
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.tp-filter-item:hover {
    border-color: var(--tp-primary);
    color: var(--tp-primary);
    transform: translateX(4px);
    box-shadow: 0 6px 18px -8px rgba(13,148,136,.35);
}
html[dir="rtl"] .tp-filter-item:hover { transform: translateX(-4px); }
.tp-filter-item.active,
.tp-filter-item:has(input:checked) {
    background: var(--tp-gradient-vibrant);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 22px -8px rgba(13,148,136,.5);
}
.tp-filter-item.active:hover { color: #fff; }
.tp-filter-item .tp-label-caps {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: 0;
    background: var(--tp-surface-container);
    color: var(--tp-on-surface-variant);
    border-radius: 999px;
    padding: .18rem .55rem;
    flex-shrink: 0;
}
.tp-filter-item.active .tp-label-caps,
.tp-filter-item:has(input:checked) .tp-label-caps { background: rgba(255,255,255,.22); color: #fff; }
.tp-filter-item .form-check-input {
    flex-shrink: 0;
    margin: 0;
    cursor: pointer;
    accent-color: var(--tp-primary);
}

/* ---------- pill select (filters) ---------- */
.tp-select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 600;
    color: var(--tp-on-surface);
    background-color: var(--tp-surface-lowest);
    border: 1.5px solid var(--tp-outline-variant);
    border-radius: 999px;
    padding: .6rem 2.4rem .6rem 1.1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23708b85' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .9rem center;
    box-shadow: var(--tp-shadow-low);
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
html[dir="rtl"] .tp-select {
    background-position: left .9rem center;
    padding: .6rem 1.1rem .6rem 2.4rem;
}
.tp-select:hover { border-color: var(--tp-primary); }
.tp-select:focus {
    outline: none;
    border-color: var(--tp-primary);
    box-shadow: 0 0 0 4px rgba(13,148,136,.15);
}
.tp-select option { color: var(--tp-on-surface); background: var(--tp-surface-lowest); }
.dark .tp-select { background-color: rgba(15,47,42,.8); color: var(--tp-inverse-on-surface); border-color: rgba(148,163,184,.3); }
.dark .tp-select option { background: #0f2f2a; }

/* ---------- pill searchbar ---------- */
.tp-searchbar {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--tp-surface-lowest);
    border: 1.5px solid var(--tp-outline-variant);
    border-radius: 999px;
    padding: .3rem .3rem .3rem 1rem;
    box-shadow: var(--tp-shadow-low);
    transition: border-color .2s ease, box-shadow .2s ease;
}
html[dir="rtl"] .tp-searchbar { padding: .3rem 1rem .3rem .3rem; }
.tp-searchbar:focus-within {
    border-color: var(--tp-primary);
    box-shadow: 0 0 0 4px rgba(13,148,136,.15);
}
.tp-searchbar .form-control {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: .7rem .2rem;
}
.tp-searchbar .btn { border-radius: 999px !important; flex-shrink: 0; }
.dark .tp-searchbar { background: rgba(15,47,42,.8); border-color: rgba(148,163,184,.3); }
.dark .tp-searchbar .form-control { color: var(--tp-inverse-on-surface); }

/* ---------- skeleton ---------- */
.skeleton {
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%);
    background-size: 400% 100%;
    animation: skeleton-loading 1.4s ease infinite;
}
@keyframes skeleton-loading {
    0% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}

/* ---------- layout containers (plain CSS, no Tailwind JIT dependency) ---------- */
.tp-container {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 16px;
}
.tp-px { padding-inline: 16px; }
@media (min-width: 992px) {
    .tp-container { padding-inline: 48px; }
    .tp-px { padding-inline: 48px; }
}

/* ---------- navbar ---------- */
.tp-nav {
    background: color-mix(in srgb, var(--tp-surface-bright) 78%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid color-mix(in srgb, var(--tp-outline-variant) 55%, transparent);
    transition: box-shadow .25s ease, background .25s ease;
}
.dark .tp-nav { background: color-mix(in srgb, var(--tp-navy) 82%, transparent); border-bottom-color: rgba(148,163,184,.14); }
.tp-nav.scrolled { box-shadow: 0 8px 30px -12px rgba(15, 23, 42, .18); }

.tp-search-kbd {
    position: absolute;
    top: 50%;
    inset-inline-end: 10px;
    transform: translateY(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--tp-on-surface-variant);
    background: var(--tp-surface-lowest);
    border: 1px solid var(--tp-outline-variant);
    border-radius: .4rem;
    padding: .18rem .45rem;
    pointer-events: none;
}
.dark .tp-search-kbd { background: rgba(15,23,42,.7); color: #94a3b8; border-color: rgba(148,163,184,.25); }

#navSearch:focus { background: var(--tp-surface-lowest); box-shadow: inset 0 0 0 2px var(--tp-primary), 0 0 0 4px rgba(13,148,136,.15); }

.tp-nav-link {
    position: relative;
    font-family: 'Inter', 'Tajawal', sans-serif;
    font-size: .875rem;
    font-weight: 600;
    color: var(--tp-on-surface-variant);
    text-decoration: none;
    padding-block: .4rem;
    transition: color .2s ease;
    white-space: nowrap;
}
html[dir="rtl"] .tp-nav-link { font-family: 'Tajawal', 'Inter', sans-serif; }
.tp-nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--tp-gradient-vibrant);
    transition: width .25s ease;
}
.tp-nav-link:hover { color: var(--tp-on-surface); }
.tp-nav-link:hover::after { width: 100%; }
.tp-nav-link.active { color: var(--tp-primary); }
.dark .tp-nav-link.active { color: #6ee7d8; }
.tp-nav-link.active::after { width: 100%; }

.tp-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid transparent;
    border-radius: 9999px;
    color: var(--tp-on-surface-variant);
    background: transparent;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.tp-icon-btn:hover { background: var(--tp-surface-container); color: var(--tp-primary); }
.dark .tp-icon-btn:hover { background: rgba(148,163,184,.12); color: #fff; }

/* ---------- forms (auth) ---------- */
.tp-input {
    display: block;
    width: 100%;
    padding: .8rem 1rem .8rem 1rem;
    font-family: inherit;
    font-size: .9375rem;
    color: var(--tp-on-surface);
    background: var(--tp-surface-bright);
    border: 1.5px solid var(--tp-outline-variant);
    border-radius: var(--tp-radius-md);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.tp-input:focus {
    outline: none;
    border-color: var(--tp-primary);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, .15);
    background: #fff;
}
.dark .tp-input { background: rgba(15, 23, 42, .6); color: var(--tp-inverse-on-surface); border-color: rgba(148,163,184,.3); }
.dark .tp-input:focus { background: rgba(15, 47, 42, .9); box-shadow: 0 0 0 4px rgba(45,212,191,.18); }
.tp-input::placeholder { color: var(--tp-outline); }

.tp-label {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--tp-on-surface);
    margin-bottom: .4rem;
}
.dark .tp-label { color: var(--tp-inverse-on-surface); }

/* ---------- auth split panel ---------- */
.auth-shell {
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-block: 4rem 5rem;
}
.auth-shell-row {
    max-width: 980px;
    margin-inline: auto;
    background: var(--tp-surface-lowest);
    border: 1px solid var(--tp-line);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--tp-shadow-high);
}
.dark .auth-shell-row { background: #102e28; border-color: #1c423a; }
.auth-card {
    width: 100%;
    max-width: 460px;
    background: var(--tp-surface-lowest);
    border: 1px solid var(--tp-line);
    border-radius: 1.75rem;
    box-shadow: var(--tp-shadow-high);
    position: relative;
    z-index: 2;
}
.dark .auth-card { background: #102e28; border-color: #1c423a; }

.auth-hero {
    background: var(--tp-gradient-brand);
    color: #fff;
    border-radius: 2rem 0 0 2rem;
    position: relative;
    overflow: hidden;
}
html[dir="rtl"] .auth-hero { border-radius: 0 2rem 2rem 0; }
.auth-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 28px 28px;
}
.auth-hero .msr { font-size: 4.5rem; opacity: .95; }

/* ---------- floating chips / hero ---------- */
.tp-float-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .55rem;
    background: color-mix(in srgb, var(--tp-surface-lowest) 88%, transparent);
    backdrop-filter: blur(10px);
    border: 1px solid var(--tp-line);
    border-radius: 1rem;
    padding: .7rem 1rem;
    box-shadow: var(--tp-shadow-high);
    animation: tp-float 5s ease-in-out infinite;
}
.dark .tp-float-chip { background: color-mix(in srgb, #102e28 88%, transparent); border-color: #1c423a; }
@keyframes tp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---------- marquee strip ---------- */
.tp-tool-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.25rem;
    background: var(--tp-surface-lowest);
    border: 1px solid var(--tp-line);
    border-radius: 999px;
    font-weight: 600;
    font-size: .875rem;
    color: var(--tp-on-surface);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    text-decoration: none;
}
.tp-tool-chip:hover { transform: translateY(-3px); box-shadow: var(--tp-shadow-high); border-color: var(--tp-primary); color: var(--tp-on-surface); }
.dark .tp-tool-chip { background: #102e28; border-color: #1c423a; color: var(--tp-inverse-on-surface); }
.dark .tp-tool-chip:hover { border-color: #2dd4bf; }

/* ---------- feature cards (why) ---------- */
.tp-feature-card {
    background: var(--tp-surface-lowest);
    border: 1px solid var(--tp-line);
    border-radius: 1.5rem;
    padding: 1.75rem;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}
.dark .tp-feature-card { background: #102e28; border-color: #1c423a; }
.tp-feature-card::after {
    content: "";
    position: absolute;
    inset-inline-end: -40px;
    top: -40px;
    width: 120px;
    height: 120px;
    border-radius: 9999px;
    background: var(--tp-fc-glow, rgba(13,148,136,.1));
    transition: transform .35s ease;
}
.tp-feature-card:hover { transform: translateY(-8px); box-shadow: var(--tp-shadow-high); border-color: color-mix(in srgb, var(--tp-fc-tone, var(--tp-primary)) 45%, transparent); }
.tp-feature-card:hover::after { transform: scale(2.4); }

/* ---------- material symbols baseline ---------- */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    line-height: 1;
}

[x-cloak] { display: none !important; }

/* ---------- scrollbar polish ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--tp-outline-variant); border-radius: 8px; border: 2px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: var(--tp-outline); background-clip: content-box; }

/* ---------- focus visibility (a11y) ---------- */
:focus-visible {
    outline: 2px solid var(--tp-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .card-hover, .btn-tp-primary, .btn-tp-gradient, .tp-float-chip, .tp-feature-card, .tp-tool-chip { transition: none; }
    .card-hover:hover, .tp-feature-card:hover { transform: none; }
    .tp-float-chip { animation: none; }
}
