/* ═══════════════════════════════════════════════════════════
   HUOLTO LANDARI – Sähköpotkulauta
   Väriteema: Mustavalkoinen – sopii valkoiseen headeriin
   ja mustaan footeriin.
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --hl-black:        #000000;
    --hl-gray-900:     #0a0a0a;
    --hl-gray-800:     #1a1a1a;
    --hl-gray-700:     #2d2d2d;
    --hl-gray-600:     #4b4b4b;
    --hl-gray-500:     #6b7280;
    --hl-gray-400:     #9ca3af;
    --hl-gray-300:     #d1d5db;
    --hl-gray-200:     #e5e7eb;
    --hl-gray-100:     #f3f4f6;
    --hl-gray-50:      #f9fafb;
    --hl-white:        #ffffff;

    /* Semantic tokens */
    --hl-bg:           var(--hl-white);
    --hl-bg-alt:       var(--hl-gray-50);
    --hl-bg-dark:      var(--hl-gray-900);
    --hl-bg-card:      var(--hl-white);
    --hl-text:         var(--hl-gray-900);
    --hl-text-2:       var(--hl-gray-700);
    --hl-muted:        var(--hl-gray-500);
    --hl-border:       var(--hl-gray-200);
    --hl-border-dark:  rgba(255,255,255,0.1);

    --hl-font-main:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --hl-font-head:    'Space Grotesk', 'Inter', sans-serif;
    --hl-radius:       10px;
    --hl-radius-lg:    16px;
    --hl-radius-xl:    24px;
    --hl-transition:   0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --hl-max-width:    1200px;
    --hl-shadow-sm:    0 1px 4px rgba(0,0,0,0.06), 0 2px 12px rgba(0,0,0,0.06);
    --hl-shadow:       0 4px 20px rgba(0,0,0,0.1);
    --hl-shadow-lg:    0 8px 40px rgba(0,0,0,0.14);
}

/* ── Reset ── */
.huolto-landari-body .hl-hero *,
.huolto-landari-body .hl-service-notice *,
.huolto-landari-body .hl-brands *,
.huolto-landari-body .hl-section *,
.huolto-landari-body .hl-cta-banner *,
.huolto-landari-body .hl-booking * {
    box-sizing: border-box;
}

/* ── Container ── */
.hl-container {
    max-width: var(--hl-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section ── */
.hl-section {
    padding: 96px 0;
    background: var(--hl-bg);
}

.hl-section--gray {
    background: var(--hl-bg-alt);
}

.hl-section--dark {
    background: var(--hl-bg-dark);
}

.hl-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Section tag */
.hl-section-tag {
    display: inline-block;
    background: var(--hl-gray-100);
    color: var(--hl-gray-700);
    border: 1px solid var(--hl-border);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Light variant (dark sections) */
.hl-section-tag--light {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.15);
}

.hl-section-title {
    font-family: var(--hl-font-head);
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--hl-text);
    margin-bottom: 14px;
}

.hl-title--light { color: var(--hl-white); }

.hl-section-desc {
    color: var(--hl-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.hl-desc--light { color: rgba(255,255,255,0.55); }

/* Gradient text – schwarz bis dunkelgrau */
.hl-gradient-text {
    background: linear-gradient(135deg, #000000 0%, #555555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hl-hero {
    position: relative;
    background: var(--hl-white);
    padding: 80px 0 80px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hienovarainen grid-tausta */
.hl-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hl-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--hl-gray-200) 1px, transparent 1px),
        linear-gradient(90deg, var(--hl-gray-200) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, black 40%, transparent 100%);
}

.hl-hero .hl-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hl-hero__content { max-width: 560px; }

/* Badge */
.hl-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hl-gray-100);
    border: 1px solid var(--hl-border);
    color: var(--hl-gray-700);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.hl-badge-dot {
    width: 7px; height: 7px;
    background: var(--hl-black);
    border-radius: 50%;
    animation: hl-pulse 2.2s ease-in-out infinite;
}

@keyframes hl-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.8); }
}

.hl-hero__title {
    font-family: var(--hl-font-head);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--hl-black);
    margin-bottom: 22px;
}

.hl-hero__subtitle {
    color: var(--hl-muted);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 38px;
}

.hl-hero__subtitle strong {
    color: var(--hl-black);
    font-weight: 700;
}

.hl-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Stats */
.hl-hero__stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px 28px;
    background: var(--hl-gray-50);
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius-lg);
    width: fit-content;
}

.hl-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hl-stat__num {
    font-size: 1.6rem;
    font-weight: 900;
    font-family: var(--hl-font-head);
    color: var(--hl-black);
    line-height: 1;
}

.hl-stat__label {
    font-size: 0.72rem;
    color: var(--hl-muted);
    font-weight: 500;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hl-stat__divider {
    width: 1px;
    height: 32px;
    background: var(--hl-border);
}

/* Hero visual */
.hl-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hl-scooter-card {
    position: relative;
    width: 340px; height: 380px;
    background: var(--hl-gray-50);
    border: 1.5px solid var(--hl-border);
    border-radius: var(--hl-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--hl-shadow-lg);
    overflow: visible;
}

.hl-scooter-emoji {
    font-size: 9rem;
    animation: hl-scooter-hover 3.5s ease-in-out infinite;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.12));
}

/* Oikea kuva emojin tilalla */
.hl-scooter-img {
    width: 86%;
    height: auto;
    object-fit: contain;
    animation: hl-scooter-hover 3.5s ease-in-out infinite;
    filter:
        drop-shadow(0 24px 40px rgba(0, 0, 0, 0.18))
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

@keyframes hl-scooter-hover {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50%       { transform: translateY(-16px) rotate(2deg); }
}

/* Floating badges */
.hl-floating-badge {
    position: absolute;
    background: var(--hl-white);
    border: 1.5px solid var(--hl-border);
    box-shadow: var(--hl-shadow);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--hl-text);
    animation: hl-badge-float 4s ease-in-out infinite;
    white-space: nowrap;
}

.hl-floating-badge--1 { top: 32px; right: -24px; animation-delay: 0s; }
.hl-floating-badge--2 { bottom: 80px; left: -28px; animation-delay: 0.7s; }
.hl-floating-badge--3 { bottom: 32px; right: -16px; animation-delay: 1.4s; }

@keyframes hl-badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

/* Scroll indicator */
.hl-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--hl-gray-400);
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    z-index: 1;
}

.hl-scroll-dot {
    width: 6px; height: 6px;
    background: var(--hl-black);
    border-radius: 50%;
    animation: hl-scroll-bounce 1.6s ease-in-out infinite;
}

@keyframes hl-scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.hl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--hl-transition);
    white-space: nowrap;
    font-family: var(--hl-font-main);
    letter-spacing: 0.1px;
}

/* Musta nappi valkoisella tekstillä */
.hl-btn--primary {
    background: var(--hl-black);
    color: var(--hl-white) !important;
}

.hl-btn--primary:hover {
    background: var(--hl-gray-800);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
    color: var(--hl-white) !important;
}

/* Ghost – border musta */
.hl-btn--ghost {
    background: transparent;
    color: var(--hl-black) !important;
    border: 1.5px solid var(--hl-gray-300);
}

.hl-btn--ghost:hover {
    border-color: var(--hl-black);
    background: var(--hl-gray-100);
    color: var(--hl-black) !important;
}

/* Outline */
.hl-btn--outline {
    background: transparent;
    color: var(--hl-black) !important;
    border: 1.5px solid var(--hl-gray-800);
}

.hl-btn--outline:hover {
    background: var(--hl-black);
    color: var(--hl-white) !important;
}

/* White (tumma tausta) */
.hl-btn--white {
    background: var(--hl-white);
    color: var(--hl-black) !important;
}

.hl-btn--white:hover {
    background: var(--hl-gray-100);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255,255,255,0.18);
    color: var(--hl-black) !important;
}

/* Ghost-white (tumma tausta) */
.hl-btn--ghost-white {
    background: transparent;
    color: rgba(255,255,255,0.8) !important;
    border: 1.5px solid rgba(255,255,255,0.25);
}

.hl-btn--ghost-white:hover {
    background: rgba(255,255,255,0.1);
    color: var(--hl-white) !important;
}

.hl-btn--full  { width: 100%; }
.hl-btn--lg    { padding: 16px 32px; font-size: 1rem; }

.hl-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ═══════════════════════════════════════════
   POIKKEUSTIEDOTE
═══════════════════════════════════════════ */
.hl-service-notice {
    background: var(--hl-white);
    padding: 28px 0;
    border-top: 1px solid var(--hl-border);
}

.hl-service-notice__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: flex-start;
    background:
        radial-gradient(circle at 8% 0%, rgba(255,255,255,0.14), transparent 28%),
        var(--hl-gray-900);
    color: var(--hl-white);
    border-radius: var(--hl-radius-xl);
    padding: 30px 34px;
    box-shadow: var(--hl-shadow-lg);
}

.hl-service-notice__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    font-size: 1.7rem;
    flex-shrink: 0;
}

.hl-service-notice__tag {
    display: inline-flex;
    color: rgba(255,255,255,0.58);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.hl-service-notice h2 {
    color: var(--hl-white);
    font-family: var(--hl-font-head);
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}

.hl-service-notice p {
    color: rgba(255,255,255,0.68);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.hl-service-notice strong {
    color: var(--hl-white);
}

.hl-service-notice__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
}

.hl-service-notice__item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--hl-radius-lg);
    padding: 16px 18px;
}

.hl-service-notice__item strong,
.hl-service-notice__item span {
    display: block;
}

.hl-service-notice__item strong {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.hl-service-notice__item span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.55;
}

.hl-service-notice__note {
    max-width: 780px;
}

/* ═══════════════════════════════════════════
   BRANDS BANNER
═══════════════════════════════════════════ */
.hl-brands {
    padding: 28px 0;
    background: var(--hl-gray-100);
    border-top: 1px solid var(--hl-border);
    border-bottom: 1px solid var(--hl-border);
}

.hl-brands .hl-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hl-brands__label {
    color: var(--hl-gray-500);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hl-brands__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hl-brand-pill {
    padding: 5px 14px;
    background: var(--hl-white);
    border: 1px solid var(--hl-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--hl-text-2);
    transition: all var(--hl-transition);
    cursor: default;
}

.hl-brand-pill:hover {
    background: var(--hl-black);
    border-color: var(--hl-black);
    color: var(--hl-white);
}

/* ═══════════════════════════════════════════
   PALVELUT
═══════════════════════════════════════════ */
.hl-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hl-service-card {
    background: var(--hl-white);
    border: 1.5px solid var(--hl-border);
    border-radius: var(--hl-radius-lg);
    padding: 28px;
    position: relative;
    transition: all var(--hl-transition);
    opacity: 0;
    transform: translateY(16px);
}

.hl-service-card.hl-visible {
    opacity: 1;
    transform: translateY(0);
}

.hl-service-card:hover {
    border-color: var(--hl-black);
    transform: translateY(-4px);
    box-shadow: var(--hl-shadow-lg);
}

/* Suosittu kortti – musta */
.hl-service-card--featured {
    background: var(--hl-black);
    border-color: var(--hl-black);
    color: var(--hl-white);
}

.hl-service-card--featured h3 { color: var(--hl-white); }
.hl-service-card--featured p  { color: rgba(255,255,255,0.6); }

.hl-service-card--featured .hl-service-card__list li {
    color: rgba(255,255,255,0.65);
}

.hl-service-card--featured .hl-service-card__list li::before {
    color: var(--hl-white);
}

.hl-service-card--featured:hover {
    background: var(--hl-gray-800);
    border-color: var(--hl-gray-800);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.hl-featured-tag {
    display: inline-block;
    background: var(--hl-white);
    color: var(--hl-black);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hl-service-card__icon {
    font-size: 2rem;
    width: 52px; height: 52px;
    background: var(--hl-gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.hl-service-card--featured .hl-service-card__icon {
    background: rgba(255,255,255,0.1);
}

.hl-service-card h3 {
    font-family: var(--hl-font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--hl-text);
}

.hl-service-card p {
    color: var(--hl-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.hl-service-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hl-service-card__list li {
    font-size: 0.84rem;
    color: var(--hl-muted);
    padding-left: 18px;
    position: relative;
}

.hl-service-card__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--hl-gray-400);
    font-size: 0.84rem;
}

/* ═══════════════════════════════════════════
   PROSESSI – tumma osio
═══════════════════════════════════════════ */
.hl-process { background: var(--hl-gray-900); }

.hl-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Yhteysviiiva */
.hl-process__steps::before {
    content: '';
    position: absolute;
    top: 43px;
    left: 13%;
    right: 13%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    pointer-events: none;
}

.hl-process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.45s ease;
}

.hl-process__step.hl-visible {
    opacity: 1;
    transform: translateY(0);
}

.hl-step-num {
    font-family: var(--hl-font-head);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hl-step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hl-step-icon {
    font-size: 2rem;
    width: 68px; height: 68px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all var(--hl-transition);
}

.hl-process__step:hover .hl-step-icon {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

.hl-step-content h3 {
    font-family: var(--hl-font-head);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--hl-white);
    margin-bottom: 5px;
}

.hl-step-content p {
    color: rgba(255,255,255,0.45);
    font-size: 0.84rem;
    line-height: 1.6;
    max-width: 170px;
}

.hl-step-arrow {
    position: absolute;
    top: 54px;
    right: -6px;
    color: rgba(255,255,255,0.2);
    font-size: 1.1rem;
    z-index: 2;
}

.hl-process__step:last-child .hl-step-arrow { display: none; }

/* ═══════════════════════════════════════════
   MIKSI ME
═══════════════════════════════════════════ */
.hl-why { background: var(--hl-white); }

.hl-why__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.hl-why__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
}

.hl-why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--hl-gray-50);
    border: 1.5px solid var(--hl-border);
    border-radius: var(--hl-radius);
    transition: all var(--hl-transition);
    opacity: 0;
    transform: translateX(-16px);
}

.hl-why-feature.hl-visible {
    opacity: 1;
    transform: translateX(0);
}

.hl-why-feature:hover {
    border-color: var(--hl-black);
    background: var(--hl-white);
    box-shadow: var(--hl-shadow-sm);
}

.hl-why-feature__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hl-gray-100);
    border-radius: 10px;
}

.hl-why-feature strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--hl-text);
    margin-bottom: 3px;
}

.hl-why-feature p {
    color: var(--hl-muted);
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0;
}

/* Reviews */
.hl-why__reviews {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hl-review-card {
    background: var(--hl-white);
    border: 1.5px solid var(--hl-border);
    border-radius: var(--hl-radius-lg);
    padding: 22px 24px;
    transition: all var(--hl-transition);
    opacity: 0;
    transform: translateX(16px);
}

.hl-review-card.hl-visible {
    opacity: 1;
    transform: translateX(0);
}

.hl-review-card:hover {
    border-color: var(--hl-black);
    box-shadow: var(--hl-shadow);
    transform: translateY(-2px);
}

.hl-review-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hl-review-card p {
    color: var(--hl-text-2);
    font-size: 0.88rem;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 16px;
}

.hl-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hl-review-avatar {
    width: 36px; height: 36px;
    background: var(--hl-black);
    color: var(--hl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}

.hl-review-author strong {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--hl-text);
}

.hl-review-author small {
    font-size: 0.76rem;
    color: var(--hl-muted);
}

/* ═══════════════════════════════════════════
   HINNOITTELU
═══════════════════════════════════════════ */
.hl-pricing { background: var(--hl-gray-50); }

.hl-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.hl-pricing__grid--single {
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
}

.hl-price-card {
    background: var(--hl-white);
    border: 1.5px solid var(--hl-border);
    border-radius: var(--hl-radius-xl);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: all var(--hl-transition);
    opacity: 0;
    transform: translateY(16px);
}

.hl-price-card.hl-visible {
    opacity: 1;
    transform: translateY(0);
}

.hl-price-card:hover {
    border-color: var(--hl-black);
    box-shadow: var(--hl-shadow-lg);
    transform: translateY(-5px);
}

/* Popular = musta kortti */
.hl-price-card--popular {
    background: var(--hl-black);
    border-color: var(--hl-black);
    transform: translateY(-8px);
}

.hl-price-card--popular.hl-visible {
    transform: translateY(-8px);
}

.hl-price-card--popular:hover {
    transform: translateY(-13px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.hl-price-card--popular .hl-price-card__header h3 { color: var(--hl-white); }
.hl-price-card--popular .hl-price__amount        { color: var(--hl-white); }
.hl-price-card--popular .hl-price__currency      { color: var(--hl-white); }
.hl-price-card--popular .hl-price__desc          { color: rgba(255,255,255,0.5); }
.hl-price-card--popular .hl-price-card__features li { color: rgba(255,255,255,0.75); }
.hl-price-card--popular .hl-check               { color: var(--hl-white); }

.hl-popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--hl-white);
    color: var(--hl-black);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.hl-price-card__header {
    margin-bottom: 26px;
}

.hl-price-card__header h3 {
    font-family: var(--hl-font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--hl-text);
    margin-bottom: 14px;
}

.hl-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 6px;
}

.hl-price__amount {
    font-family: var(--hl-font-head);
    font-size: 3rem;
    font-weight: 900;
    color: var(--hl-black);
    line-height: 1;
    letter-spacing: -0.03em;
}

.hl-price__amount--sm {
    font-family: var(--hl-font-head);
    font-size: 2rem;
    font-weight: 900;
    color: var(--hl-black);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hl-price-card--popular .hl-price__amount--sm { color: var(--hl-white); }

.hl-price__currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--hl-black);
}

.hl-price__desc {
    color: var(--hl-muted);
    font-size: 0.84rem;
}

.hl-price-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 28px;
    flex: 1;
}

.hl-price-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--hl-text-2);
}

.hl-check {
    color: var(--hl-black);
    font-weight: 800;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.hl-pricing__note {
    text-align: center;
    margin-top: 36px;
    color: var(--hl-muted);
    font-size: 0.88rem;
    padding: 14px 20px;
    background: var(--hl-white);
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius);
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.hl-pricing__note strong { color: var(--hl-black); }

/* ═══════════════════════════════════════════
   CTA BANNER – täysin musta
═══════════════════════════════════════════ */
.hl-cta-banner {
    padding: 80px 0;
    background: var(--hl-black);
    position: relative;
    overflow: hidden;
}

/* Hienovarainen tekstuuri */
.hl-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hl-cta-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}

.hl-cta-banner__emoji {
    font-size: 3.2rem;
    margin-bottom: 20px;
    display: block;
    animation: hl-scooter-hover 3.5s ease-in-out infinite;
}

/* Oikea kuva CTA-bannerissa */
.hl-cta-scooter-img {
    font-size: 0;
    width: 120px;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 8px 20px rgba(255,255,255,0.1))
        brightness(0) invert(1);
    /* invert(1) tekee kuvasta valkoisen tummalla taustalla –
       poista jos kuva näyttää hyvältä ilman invertointia */
}

.hl-cta-banner__content h2 {
    font-family: var(--hl-font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--hl-white);
    letter-spacing: -0.02em;
}

.hl-cta-banner__content p {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hl-cta-banner__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   VARAUSLOMAKE
═══════════════════════════════════════════ */
.hl-booking { background: var(--hl-white); }

.hl-booking__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.hl-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.hl-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 15px 18px;
    background: var(--hl-gray-50);
    border: 1.5px solid var(--hl-border);
    border-radius: var(--hl-radius);
    transition: all var(--hl-transition);
    opacity: 0;
    transform: translateY(10px);
}

.hl-contact-item.hl-visible {
    opacity: 1;
    transform: translateY(0);
}

.hl-contact-item:hover {
    border-color: var(--hl-black);
    background: var(--hl-white);
}

.hl-contact-item__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hl-gray-100);
    border-radius: 8px;
}

.hl-contact-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--hl-text);
    margin-bottom: 2px;
}

.hl-contact-item p {
    color: var(--hl-muted);
    font-size: 0.84rem;
    line-height: 1.5;
    margin: 0;
}

.hl-contact-item a { color: var(--hl-muted); }
.hl-contact-item a:hover { color: var(--hl-black); }

/* ── Lomake ── */
.hl-booking__form {
    background: var(--hl-gray-50);
    border: 1.5px solid var(--hl-border);
    border-radius: var(--hl-radius-xl);
    padding: 36px;
}

.hl-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hl-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hl-form__group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.hl-form__group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--hl-text-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hl-form__group input,
.hl-form__group select,
.hl-form__group textarea {
    background: var(--hl-white);
    border: 1.5px solid var(--hl-border);
    border-radius: var(--hl-radius);
    padding: 12px 14px;
    color: var(--hl-text);
    font-size: 0.92rem;
    font-family: var(--hl-font-main);
    width: 100%;
    transition: all var(--hl-transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.hl-form__group input::placeholder,
.hl-form__group textarea::placeholder {
    color: var(--hl-gray-400);
}

.hl-form__group input:focus,
.hl-form__group select:focus,
.hl-form__group textarea:focus {
    border-color: var(--hl-black);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.hl-form__group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.hl-form__group textarea {
    resize: vertical;
    min-height: 100px;
}

.hl-form__note {
    color: var(--hl-gray-400);
    font-size: 0.76rem;
    text-align: center;
    margin-top: -6px;
}

.hl-form__success {
    background: var(--hl-gray-100);
    border: 1.5px solid var(--hl-gray-300);
    border-radius: var(--hl-radius);
    padding: 20px;
    text-align: center;
    color: var(--hl-text);
    font-weight: 700;
    font-size: 0.98rem;
    margin-top: 8px;
}

/* ═══════════════════════════════════════════
   RESPONSIIVISUUS
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hl-services__grid   { grid-template-columns: repeat(2, 1fr); }
    .hl-pricing__grid    { grid-template-columns: repeat(2, 1fr); }

    .hl-price-card--popular {
        transform: translateY(0);
        grid-column: span 2;
        max-width: 420px;
        margin: 0 auto;
    }

    .hl-price-card--popular.hl-visible { transform: translateY(0); }
    .hl-price-card--popular:hover      { transform: translateY(-5px); }

    .hl-process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .hl-process__steps::before { display: none; }
    .hl-step-arrow { display: none; }

    .hl-why__inner,
    .hl-booking__inner { gap: 48px; }
}

@media (max-width: 768px) {
    .hl-section { padding: 64px 0; }

    .hl-hero .hl-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hl-hero__content   { max-width: 100%; }
    .hl-hero__badge     { margin: 0 auto 28px; }
    .hl-hero__actions   { justify-content: center; }
    .hl-hero__stats     { margin: 0 auto; justify-content: center; flex-wrap: wrap; }

    .hl-hero__visual    { order: -1; }

    .hl-scooter-card    { width: 280px; height: 300px; }
    .hl-scooter-emoji   { font-size: 7rem; }
    .hl-floating-badge--2 { display: none; }

    .hl-service-notice__inner,
    .hl-service-notice__grid {
        grid-template-columns: 1fr;
    }

    .hl-service-notice__inner {
        padding: 26px 22px;
    }

    .hl-brands .hl-container { flex-direction: column; align-items: flex-start; }

    .hl-services__grid  { grid-template-columns: 1fr; }
    .hl-pricing__grid   { grid-template-columns: 1fr; }

    .hl-price-card--popular {
        grid-column: auto;
        max-width: 100%;
    }

    .hl-process__steps  { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }

    .hl-why__inner,
    .hl-booking__inner  { grid-template-columns: 1fr; gap: 40px; }

    .hl-form__row       { grid-template-columns: 1fr; }
    .hl-booking__form   { padding: 22px; }

    .hl-cta-banner__actions { flex-direction: column; align-items: center; }

    .hl-section-title   { font-size: 1.75rem; }
}

@media (max-width: 480px) {
    .hl-container     { padding: 0 16px; }
    .hl-hero__title   { font-size: 2rem; }
    .hl-btn           { padding: 12px 20px; font-size: 0.88rem; }
    .hl-scooter-card  { width: 240px; height: 260px; }
    .hl-floating-badge--1,
    .hl-floating-badge--3 { display: none; }
}

/* ═══════════════════════════════════════════
   ERIKOISASENNUKSET
═══════════════════════════════════════════ */
.hl-specials {}

.hl-specials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hl-special-card {
    background: var(--hl-white);
    border: 1.5px solid var(--hl-border);
    border-radius: var(--hl-radius-lg);
    padding: 32px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--hl-transition);
    opacity: 0;
    transform: translateY(16px);
}

.hl-special-card.hl-visible {
    opacity: 1;
    transform: translateY(0);
}

.hl-special-card:hover {
    border-color: var(--hl-black);
    box-shadow: var(--hl-shadow-lg);
    transform: translateY(-4px);
}

/* Tumma erikoiskortti (USB-latauspiste) */
.hl-special-card--dark {
    background: var(--hl-black);
    border-color: var(--hl-black);
    color: var(--hl-white);
}

.hl-special-card--dark h3 { color: var(--hl-white); }
.hl-special-card--dark p  { color: rgba(255,255,255,0.65); }
.hl-special-card--dark strong { color: var(--hl-white); }

.hl-special-card--dark:hover {
    background: var(--hl-gray-800);
    border-color: var(--hl-gray-800);
}

.hl-special-card__num {
    font-family: var(--hl-font-head);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--hl-gray-400);
    text-transform: uppercase;
}

.hl-special-card--dark .hl-special-card__num {
    color: rgba(255,255,255,0.3);
}

.hl-special-card__icon {
    font-size: 2.2rem;
    width: 56px; height: 56px;
    background: var(--hl-gray-100);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hl-special-card--dark .hl-special-card__icon {
    background: rgba(255,255,255,0.1);
}

.hl-special-card h3 {
    font-family: var(--hl-font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--hl-text);
    line-height: 1.25;
}

.hl-special-card p {
    color: var(--hl-muted);
    font-size: 0.88rem;
    line-height: 1.68;
    flex: 1;
    margin: 0;
}

.hl-special-footnote {
    font-size: 0.76rem !important;
    color: rgba(255,255,255,0.4) !important;
    margin-top: -4px;
    font-style: italic;
}

.hl-special-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--hl-black) !important;
    margin-top: 4px;
    transition: gap var(--hl-transition);
    text-decoration: none;
}

.hl-special-card__link:hover { gap: 8px; }

.hl-special-card__link--light {
    color: var(--hl-white) !important;
}

/* ═══════════════════════════════════════════
   RUOKALÄHETTI BANNERI
═══════════════════════════════════════════ */
.hl-delivery-banner {
    background: var(--hl-gray-100);
    border-top: 1.5px solid var(--hl-border);
    border-bottom: 1.5px solid var(--hl-border);
    padding: 32px 0;
}

.hl-delivery-banner__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hl-delivery-banner__emoji {
    font-size: 3rem;
    flex-shrink: 0;
    animation: hl-scooter-hover 3.5s ease-in-out infinite;
}

.hl-delivery-banner__text {
    flex: 1;
    min-width: 260px;
}

.hl-delivery-banner__text h3 {
    font-family: var(--hl-font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--hl-black);
    margin-bottom: 6px;
}

.hl-delivery-banner__text p {
    color: var(--hl-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.hl-delivery-banner__text strong {
    color: var(--hl-black);
}

.hl-delivery-banner__cta {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   TOIMITUSVAIHTOEHTO-KORTIT (prosessin alla)
═══════════════════════════════════════════ */
.hl-delivery-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.hl-delivery-option {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--hl-radius);
    transition: all var(--hl-transition);
    opacity: 0;
    transform: translateY(12px);
}

.hl-delivery-option.hl-visible {
    opacity: 1;
    transform: translateY(0);
}

.hl-delivery-option:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

.hl-delivery-option__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
}

.hl-delivery-option strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--hl-white);
    margin-bottom: 4px;
}

.hl-delivery-option p {
    color: rgba(255,255,255,0.5);
    font-size: 0.84rem;
    line-height: 1.55;
    margin: 0;
}

/* ═══════════════════════════════════════════
   HINNASTOTAULUKKO
═══════════════════════════════════════════ */
.hl-price-table-wrap {
    margin-top: 64px;
}

.hl-price-table__title {
    font-family: var(--hl-font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--hl-text);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--hl-black);
}

.hl-price-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid var(--hl-border);
    border-radius: var(--hl-radius-lg);
    overflow: hidden;
    background: var(--hl-white);
}

.hl-price-table__group {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.hl-price-table__group.hl-visible {
    opacity: 1;
    transform: translateY(0);
}

.hl-price-table__group + .hl-price-table__group {
    border-top: 2px solid var(--hl-gray-100);
}

.hl-price-table__group-header {
    background: var(--hl-gray-100);
    padding: 12px 20px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--hl-text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--hl-border);
}

.hl-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 20px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--hl-gray-100);
    transition: background var(--hl-transition);
    gap: 16px;
}

.hl-price-row:last-child {
    border-bottom: none;
}

.hl-price-row:hover {
    background: var(--hl-gray-50);
}

.hl-price-row span:first-child {
    color: var(--hl-text-2);
    flex: 1;
}

.hl-price-row span:last-child {
    color: var(--hl-black);
    font-weight: 700;
    white-space: nowrap;
    text-align: right;
}

.hl-price-row--note span:first-child {
    color: var(--hl-muted);
    font-style: italic;
}

.hl-price-table__note {
    margin-top: 14px;
    color: var(--hl-gray-400);
    font-size: 0.8rem;
    line-height: 1.6;
    padding: 12px 16px;
    background: var(--hl-white);
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius);
}

/* ═══════════════════════════════════════════
   UKK – ACCORDION
═══════════════════════════════════════════ */
.hl-faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid var(--hl-border);
    border-radius: var(--hl-radius-lg);
    overflow: hidden;
    background: var(--hl-white);
}

.hl-faq-item {
    border-bottom: 1px solid var(--hl-border);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hl-faq-item:last-child { border-bottom: none; }

.hl-faq-item.hl-visible {
    opacity: 1;
    transform: translateY(0);
}

.hl-faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--hl-font-main);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--hl-text);
    transition: background var(--hl-transition);
}

.hl-faq-item__question:hover {
    background: var(--hl-gray-50);
}

.hl-faq-item--open .hl-faq-item__question {
    background: var(--hl-gray-50);
    border-bottom: 1px solid var(--hl-border);
}

.hl-faq-item__icon {
    font-size: 1.3rem;
    font-weight: 400;
    flex-shrink: 0;
    width: 26px; height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hl-gray-100);
    border-radius: 50%;
    transition: all var(--hl-transition);
    line-height: 1;
}

.hl-faq-item--open .hl-faq-item__icon {
    background: var(--hl-black);
    color: var(--hl-white);
}

.hl-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hl-faq-item__answer p {
    padding: 18px 22px;
    color: var(--hl-muted);
    font-size: 0.9rem;
    line-height: 1.72;
    margin: 0;
}

/* ═══════════════════════════════════════════
   RESPONSIIVISUUS – UUDET OSIOT
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hl-specials__grid      { grid-template-columns: 1fr 1fr; }
    .hl-delivery-options    { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 768px) {
    .hl-specials__grid      { grid-template-columns: 1fr; }

    .hl-delivery-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .hl-delivery-banner__cta { width: 100%; text-align: center; }

    .hl-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .hl-price-row span:last-child {
        text-align: left;
        font-size: 0.95rem;
    }

    .hl-faq-item__question  { font-size: 0.9rem; padding: 16px 18px; }
    .hl-faq-item__answer p  { padding: 14px 18px; }
}

/* ═══════════════════════════════════════════
   GEO / ENTITY OSIO
═══════════════════════════════════════════ */
.hl-entity-section {
    background: var(--hl-gray-50);
    border-top: 1px solid var(--hl-border);
    padding: 56px 0 48px;
}

.hl-entity-inner {
    max-width: 820px;
    margin: 0 auto;
}

.hl-entity-title {
    font-family: var(--hl-font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--hl-text);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--hl-black);
    letter-spacing: -0.01em;
}

.hl-entity-inner p {
    color: var(--hl-gray-600);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.hl-entity-inner strong {
    color: var(--hl-text);
    font-weight: 700;
}

.hl-entity-meta {
    margin-top: 20px;
    padding: 12px 16px;
    background: var(--hl-white);
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius);
    font-size: 0.8rem !important;
    color: var(--hl-gray-500) !important;
    line-height: 1.6 !important;
}