/* HandEmand - Professional Home Services UI */

:root {
    --he-dark: #0f172a;
    --he-text: #1e293b;
    --he-text-secondary: #64748b;
    --he-bg: #f1f5f9;
    --he-white: #ffffff;
    --he-border: #e2e8f0;
    --he-accent: #1e40af;
    --he-accent-hover: #1e3a8a;
    --he-accent-soft: #eff6ff;
    --he-blue: #1e40af;
    --he-blue-soft: #eff6ff;
    --he-success: #059669;
    --he-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --he-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --he-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --he-shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --he-radius: 10px;
    --he-radius-sm: 8px;
    --ease: cubic-bezier(.4,0,.2,1);
    --he-primary: #1e40af;
    --he-primary-light: #3b82f6;
    --he-gray: #64748b;
    --he-light-gray: #e2e8f0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--he-bg);
    color: var(--he-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ========== NAVBAR ========== */
.he-navbar {
    background: var(--he-white);
    padding: 0 32px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--he-border);
}
.he-navbar .logo {
    color: var(--he-dark);
    font-size: 1.15rem;
    font-weight: 700;
    display: flex; align-items: center; gap: 8px;
    letter-spacing: -0.3px;
}
.he-navbar .logo i { color: var(--he-accent); font-size: 1.05rem; }
.he-navbar .nav-links { display: flex; gap: 2px; align-items: center; }
.he-navbar .nav-links a {
    color: var(--he-text-secondary);
    font-size: 0.85rem; font-weight: 500;
    padding: 8px 14px; border-radius: 6px;
    transition: all 0.15s var(--ease);
    display: flex; align-items: center; gap: 6px;
}
.he-navbar .nav-links a:hover { color: var(--he-accent); background: var(--he-accent-soft); }
.he-navbar .cart-badge {
    background: var(--he-accent); color: #fff; border-radius: 50%;
    min-width: 18px; height: 18px; padding: 0 5px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 700;
    position: relative; top: -8px; left: -4px; line-height: 1;
}

/* ========== HERO ========== */
.he-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #fff;
    padding: 64px 24px 68px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.he-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(30,64,175,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(59,130,246,0.08) 0%, transparent 50%);
}
.he-hero > * { position: relative; z-index: 1; }
.he-hero h1 {
    font-size: 2.25rem; font-weight: 700;
    letter-spacing: -0.5px; line-height: 1.2;
    margin-bottom: 14px;
}
.he-hero h1 span {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.he-hero p {
    font-size: 1rem; color: rgba(255,255,255,0.6);
    margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto;
    font-weight: 400; line-height: 1.7;
}
.he-hero .search-box {
    max-width: 480px; margin: 0 auto 28px; position: relative;
}
.he-hero .search-box input {
    width: 100%; padding: 14px 52px 14px 20px;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    font-size: 0.9rem; font-family: inherit;
    background: rgba(255,255,255,0.06); color: #fff;
    outline: none; transition: all 0.2s var(--ease);
}
.he-hero .search-box input::placeholder { color: rgba(255,255,255,0.35); }
.he-hero .search-box input:focus {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}
.he-hero .search-box button {
    position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    background: var(--he-accent); color: #fff; border: none;
    width: 40px; height: 40px; border-radius: 6px;
    font-size: 0.9rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s var(--ease);
}
.he-hero .search-box button:hover { background: var(--he-accent-hover); }
.hero-stats {
    display: flex; justify-content: center; gap: 32px; font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}
.hero-stats span { display: flex; align-items: center; gap: 6px; }
.hero-stats i { color: #60a5fa; font-size: 0.7rem; }

/* ========== SECTION ========== */
.he-section { padding: 56px 24px; max-width: 1100px; margin: 0 auto; }
.he-section h2 {
    font-size: 1.4rem; font-weight: 700; color: var(--he-dark);
    letter-spacing: -0.3px; margin-bottom: 4px;
}
.section-subtitle {
    color: var(--he-text-secondary); font-size: 0.88rem; margin-bottom: 32px;
}

/* ========== SERVICE GRID ========== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 640px) { .service-grid { gap: 20px; } }
@media (min-width: 768px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== SERVICE CARD — clean, no gradient banner ===== */
.service-card {
    background: var(--he-white);
    border-radius: var(--he-radius);
    overflow: hidden;
    box-shadow: var(--he-shadow-sm);
    border: 1px solid var(--he-border);
    transition: all 0.2s var(--ease);
    display: flex; flex-direction: column;
    cursor: default;
}
.service-card:hover {
    box-shadow: var(--he-shadow-lg);
    transform: translateY(-2px);
    border-color: #cbd5e1;
}

/* Icon area — subtle tinted background instead of loud gradient */
.card-banner {
    height: 72px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    position: relative;
    background: var(--he-bg);
    border-bottom: 1px solid var(--he-border);
}
.card-banner i { position: relative; z-index: 1; }
.card-banner::after { display: none; }

/* Uniform muted icon colors per service type */
.grad-blue     { background: #eff6ff; color: #1e40af; border-bottom-color: #dbeafe; }
.grad-amber    { background: #fffbeb; color: #92400e; border-bottom-color: #fef3c7; }
.grad-cyan     { background: #ecfeff; color: #155e75; border-bottom-color: #cffafe; }
.grad-orange   { background: #fff7ed; color: #9a3412; border-bottom-color: #ffedd5; }
.grad-purple   { background: #f5f3ff; color: #5b21b6; border-bottom-color: #ede9fe; }
.grad-rose     { background: #fff1f2; color: #9f1239; border-bottom-color: #ffe4e6; }
.grad-emerald  { background: #ecfdf5; color: #065f46; border-bottom-color: #d1fae5; }
.grad-slate    { background: #f8fafc; color: #334155; border-bottom-color: #e2e8f0; }

.card-content {
    padding: 16px 18px 18px;
    flex: 1; display: flex; flex-direction: column;
}
.card-content h3 {
    font-size: 0.9rem; font-weight: 600; color: var(--he-dark);
    margin-bottom: 4px; letter-spacing: -0.1px;
}
.card-desc {
    font-size: 0.78rem; color: var(--he-text-secondary);
    margin-bottom: 16px; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.card-price-tag {
    font-size: 1rem; font-weight: 700; color: var(--he-dark);
    margin-bottom: 14px; letter-spacing: -0.2px;
}
.card-price-tag span { font-size: 0.75rem; color: var(--he-text-secondary); font-weight: 400; }

.quick-add-btn {
    width: 100%; padding: 10px 14px; border: none;
    border-radius: 6px;
    font-size: 0.82rem; font-weight: 600;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; gap: 6px;
    transition: all 0.15s var(--ease);
    background: var(--he-accent); color: #fff;
    margin-top: auto;
}
.quick-add-btn:hover { background: var(--he-accent-hover); }
.quick-add-btn:active { transform: scale(0.98); }
.quick-add-btn.added { background: var(--he-success); }

.more-pkgs-btn {
    width: 100%; padding: 8px; border: none;
    background: none; color: var(--he-accent);
    font-size: 0.76rem; font-weight: 600;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; gap: 5px; margin-top: 8px;
    transition: color 0.15s var(--ease);
}
.more-pkgs-btn:hover { color: var(--he-dark); }
.more-pkgs-btn i { font-size: 0.6rem; transition: transform 0.25s var(--ease); }
.more-pkgs-btn.open i { transform: rotate(180deg); }

/* Package dropdown */
.pkgs-dropdown {
    background: var(--he-bg); border-top: 1px solid var(--he-border);
    max-height: 0; overflow: hidden; padding: 0 12px;
    transition: max-height 0.3s var(--ease), padding 0.3s var(--ease);
}
.pkgs-dropdown.open { max-height: 400px; padding: 10px 12px; }

.pkg-row {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 12px; background: var(--he-white);
    border-radius: 6px; margin-bottom: 6px;
    border: 1px solid var(--he-border);
}
.pkg-row:last-child { margin-bottom: 0; }
.pkg-label { flex: 1; min-width: 0; }
.pkg-name { font-size: 0.78rem; font-weight: 600; color: var(--he-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pkg-meta { font-size: 0.67rem; color: var(--he-text-secondary); }
.pkg-amt { font-size: 0.82rem; font-weight: 700; color: var(--he-dark); white-space: nowrap; }
.pkg-add-btn {
    width: 30px; height: 30px; flex-shrink: 0;
    border: none; border-radius: 6px;
    background: var(--he-accent); color: #fff;
    font-size: 0.7rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s var(--ease);
}
.pkg-add-btn:hover { background: var(--he-accent-hover); }

/* ========== HOW IT WORKS ========== */
.steps-row {
    display: flex; gap: 0; margin-top: 32px;
    position: relative;
}
.steps-row::before {
    content: '';
    position: absolute;
    top: 28px; left: 10%; right: 10%;
    height: 1px; background: var(--he-border);
    z-index: 0;
}
.step-card {
    flex: 1; text-align: center;
    position: relative; z-index: 1;
    padding: 0 12px;
}
.step-badge {
    width: 56px; height: 56px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 16px;
    border: 2px solid var(--he-white);
    box-shadow: var(--he-shadow);
}
.step-card h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: var(--he-dark); }
.step-card p { font-size: 0.8rem; color: var(--he-text-secondary); line-height: 1.5; }

/* ========== TRUST SECTION ========== */
.trust-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    margin-top: 28px;
}
.trust-card {
    text-align: center; padding: 28px 16px;
    background: var(--he-white); border-radius: var(--he-radius);
    border: 1px solid var(--he-border);
    transition: all 0.2s var(--ease);
}
.trust-card:hover { border-color: #cbd5e1; box-shadow: var(--he-shadow-md); }
.trust-card .t-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 14px;
}
.trust-card h5 { font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--he-dark); }
.trust-card p { font-size: 0.78rem; color: var(--he-text-secondary); line-height: 1.5; }

/* ========== FLOATING CART BAR (mobile) ========== */
.floating-cart {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--he-white);
    padding: 12px 20px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
    border-top: 1px solid var(--he-border);
    display: none; align-items: center; justify-content: space-between;
    z-index: 999; gap: 12px;
}
.floating-cart.visible { display: flex; }
.fc-info { font-size: 0.85rem; color: var(--he-text-secondary); }
.fc-info strong { color: var(--he-dark); font-weight: 600; }
.fc-btn {
    background: var(--he-accent); color: #fff; border: none;
    padding: 10px 20px; border-radius: 6px;
    font-size: 0.82rem; font-weight: 600;
    cursor: pointer; display: flex; align-items: center; gap: 6px;
    white-space: nowrap; transition: all 0.15s var(--ease);
    text-decoration: none;
}
.fc-btn:hover { background: var(--he-accent-hover); color: #fff; }

/* ========== PACKAGE CARDS (service.php) ========== */
.package-card {
    background: var(--he-white); border-radius: var(--he-radius);
    padding: 20px; box-shadow: var(--he-shadow-sm);
    border: 1px solid var(--he-border); margin-bottom: 12px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    transition: border-color 0.15s var(--ease);
}
.package-card:hover { border-color: #cbd5e1; }
.package-card .pkg-info h5 { margin: 0 0 5px 0; font-size: 1rem; font-weight: 600; }
.package-card .pkg-info .pkg-type {
    font-size: 0.72rem; background: var(--he-accent); color: #fff;
    padding: 3px 10px; border-radius: 4px; font-weight: 500;
}
.package-card .pkg-price { font-size: 1.4rem; font-weight: 700; color: var(--he-dark); }
.package-card .pkg-actions { display: flex; align-items: center; gap: 10px; }

.qty-control { display: flex; align-items: center; gap: 4px; }
.qty-control button {
    width: 34px; height: 34px;
    border: 1px solid var(--he-border); background: var(--he-white);
    border-radius: 6px; font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--he-text); transition: all 0.15s var(--ease);
}
.qty-control button:hover { border-color: var(--he-accent); background: var(--he-accent-soft); }
.qty-control input {
    width: 42px; text-align: center;
    border: 1px solid var(--he-border); border-radius: 6px;
    padding: 6px; font-size: 0.9rem; font-family: inherit;
}

/* ========== BUTTONS ========== */
.btn-primary-he {
    background: var(--he-accent); color: #fff; border: none;
    padding: 12px 24px; border-radius: 6px;
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    transition: all 0.15s var(--ease);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-he:hover { background: var(--he-accent-hover); }
.btn-accent-he {
    background: var(--he-accent); color: #fff; border: none;
    padding: 12px 24px; border-radius: 6px;
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    transition: all 0.15s var(--ease);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-accent-he:hover { background: var(--he-accent-hover); }
.btn-outline-he {
    background: transparent; color: var(--he-accent);
    border: 1.5px solid var(--he-accent);
    padding: 10px 22px; border-radius: 6px;
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    transition: all 0.15s var(--ease);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-he:hover { background: var(--he-accent); color: #fff; }

/* ========== CART PAGE ========== */
.cart-item {
    background: var(--he-white); border-radius: var(--he-radius);
    padding: 16px; margin-bottom: 10px;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: var(--he-shadow-sm); border: 1px solid var(--he-border);
}
.cart-item .item-info h5 { margin: 0 0 3px 0; font-size: 0.92rem; font-weight: 600; }
.cart-item .item-info small { color: var(--he-text-secondary); font-size: 0.82rem; }
.cart-item .item-price { font-weight: 700; color: var(--he-dark); }
.cart-item .remove-btn {
    background: none; border: none; color: #dc2626;
    cursor: pointer; font-size: 1rem; padding: 4px;
    transition: opacity 0.15s var(--ease);
}
.cart-item .remove-btn:hover { opacity: 0.7; }
.cart-summary {
    background: var(--he-white); border-radius: var(--he-radius);
    padding: 20px; box-shadow: var(--he-shadow-sm); border: 1px solid var(--he-border);
}
.cart-summary .line { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.92rem; }
.cart-summary .total {
    border-top: 2px solid var(--he-dark); font-weight: 700; font-size: 1.1rem;
    margin-top: 4px; padding-top: 14px;
}
.urgent-toggle {
    background: var(--he-accent-soft); border: 1.5px solid var(--he-accent);
    border-radius: var(--he-radius); padding: 16px;
    margin: 15px 0; display: flex; align-items: center; gap: 12px;
}
.urgent-toggle label { font-weight: 600; margin: 0; cursor: pointer; font-size: 0.88rem; }

/* ========== FORMS ========== */
.he-form {
    background: var(--he-white); border-radius: var(--he-radius);
    padding: 28px; box-shadow: var(--he-shadow-sm); border: 1px solid var(--he-border);
}
.he-form label { font-weight: 600; font-size: 0.82rem; margin-bottom: 6px; display: block; color: var(--he-dark); }
.he-form input, .he-form select, .he-form textarea {
    width: 100%; padding: 11px 14px;
    border: 1px solid var(--he-border); border-radius: 6px;
    font-size: 0.9rem; font-family: inherit; margin-bottom: 16px;
    transition: all 0.15s var(--ease); color: var(--he-text); background: var(--he-white);
}
.he-form input:focus, .he-form select:focus, .he-form textarea:focus {
    border-color: var(--he-accent); outline: none;
    box-shadow: 0 0 0 3px rgba(30,64,175,0.08);
}

/* ========== TRACKING ========== */
.status-stepper { display: flex; flex-wrap: wrap; gap: 0; margin: 20px 0; }
.status-step {
    flex: 1; min-width: 80px; text-align: center; padding: 10px 5px;
    position: relative; font-size: 0.75rem;
}
.status-step .step-circle {
    width: 34px; height: 34px; border-radius: 50%;
    background: #e5e7eb; color: #9ca3af;
    margin: 0 auto 6px;
    display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
}
.status-step.active .step-circle { background: var(--he-accent); color: #fff; box-shadow: 0 0 0 4px rgba(30,64,175,0.1); }
.status-step.completed .step-circle { background: var(--he-success); color: #fff; }
.status-step .step-label { font-weight: 600; color: var(--he-text-secondary); }
.status-step.active .step-label { color: var(--he-accent); }
.status-step.completed .step-label { color: var(--he-success); }

#tracking-map {
    width: 100%; height: 300px;
    border-radius: var(--he-radius); margin: 15px 0;
    border: 1px solid var(--he-border);
}

/* ========== FOOTER ========== */
.he-footer {
    background: var(--he-dark); color: rgba(255,255,255,0.45);
    padding: 40px 24px; text-align: center; font-size: 0.82rem;
}
.he-footer p { margin-bottom: 6px; }
.he-footer strong { color: rgba(255,255,255,0.8); }
.he-footer a { color: rgba(255,255,255,0.35); transition: color 0.15s var(--ease); }
.he-footer a:hover { color: rgba(255,255,255,0.7); }

/* ========== TOAST ========== */
.he-toast {
    position: fixed; top: 68px; right: 20px; z-index: 9999;
    padding: 12px 20px; border-radius: 8px;
    color: #fff; font-weight: 600; font-size: 0.85rem;
    box-shadow: var(--he-shadow-lg);
    display: flex; align-items: center; gap: 10px;
    max-width: 320px;
    animation: toastIn 0.3s var(--ease);
}
@keyframes toastIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateY(-10px); } }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .trust-row { grid-template-columns: repeat(2, 1fr); }
    .steps-row { flex-direction: column; gap: 16px; }
    .steps-row::before { display: none; }
    .step-card { display: flex; align-items: center; gap: 16px; text-align: left; padding: 0; }
    .step-badge { margin-bottom: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 1.1rem; }
    .step-card h4, .step-card p { margin-bottom: 2px; }
}

@media (max-width: 640px) {
    .he-navbar { padding: 0 16px; height: 54px; }
    .he-navbar .logo { font-size: 1.05rem; }
    .he-navbar .nav-links a { padding: 6px 10px; font-size: 0.82rem; }
    .he-navbar .nav-links a .nav-text { display: none; }

    .he-hero { padding: 44px 20px 48px; }
    .he-hero h1 { font-size: 1.5rem; line-height: 1.3; }
    .he-hero p { font-size: 0.88rem; margin-bottom: 28px; }
    .hero-stats { gap: 16px; font-size: 0.72rem; flex-wrap: wrap; justify-content: center; }

    .he-section { padding: 36px 16px; }
    .he-section h2 { font-size: 1.2rem; }
    .section-subtitle { font-size: 0.82rem; margin-bottom: 24px; }

    .service-grid { gap: 12px; }
    .card-banner { height: 60px; font-size: 1.4rem; }
    .card-content { padding: 12px 14px 14px; }
    .card-content h3 { font-size: 0.84rem; }
    .card-desc { font-size: 0.72rem; margin-bottom: 12px; }
    .card-price-tag { font-size: 0.92rem; margin-bottom: 10px; }
    .quick-add-btn { padding: 9px 12px; font-size: 0.78rem; }

    .trust-row { grid-template-columns: 1fr 1fr; gap: 10px; }
    .trust-card { padding: 20px 12px; }
    .trust-card .t-icon { width: 40px; height: 40px; font-size: 1rem; }
    .trust-card h5 { font-size: 0.8rem; }
    .trust-card p { font-size: 0.72rem; }

    .package-card { flex-direction: column; align-items: flex-start; }

    body.has-floating-cart { padding-bottom: 68px; }
}

@media (max-width: 380px) {
    .service-grid { grid-template-columns: 1fr; }
    .trust-row { grid-template-columns: 1fr; }
    .he-hero h1 { font-size: 1.35rem; }
}

@media (min-width: 769px) {
    .floating-cart { display: none !important; }
}

/* backward compat: old card structure from service.php */
.service-card .card-img { width: 100%; height: 140px; object-fit: cover; }
.service-card .card-body { padding: 12px 16px; }
.service-card .card-body h5 { font-size: 0.92rem; font-weight: 600; margin: 0 0 4px 0; }
.service-card .card-body p { font-size: 0.8rem; color: var(--he-text-secondary); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.service-card .card-price { padding: 10px 16px; background: var(--he-accent-soft); font-size: 0.85rem; color: var(--he-accent); font-weight: 600; }
