/* ================================================================
   HAULMASTER CRM — Landing Page Styles 2026
   Stack: Bootstrap 5.3 + TailwindCSS utilities + Custom
   ================================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --hm-primary: #1A3A8F;
    --hm-primary-light: #2E6BC6;
    --hm-primary-dark: #0F2460;
    --hm-secondary: #C41E2A;
    --hm-secondary-light: #E03540;
    --hm-secondary-dark: #9E1720;
    --hm-silver: #A8B0BC;
    --hm-white: #FFFFFF;
    --hm-gray-50: #F5F7FA;
    --hm-gray-100: #E8ECF1;
    --hm-gray-200: #D1D5DB;
    --hm-gray-300: #9CA3AF;
    --hm-gray-400: #6B7280;
    --hm-gray-500: #4B5563;
    --hm-gray-600: #374151;
    --hm-gray-700: #1F2937;
    --hm-gray-900: #111827;
    --hm-green: #10B981;
    --hm-green-light: #D1FAE5;
    --hm-radius-sm: 8px;
    --hm-radius-md: 12px;
    --hm-radius-lg: 16px;
    --hm-radius-xl: 24px;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--hm-gray-700);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ===== SECTION TAG ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(10, 36, 114, 0.07);
    color: var(--hm-primary);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.section-tag-light {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

/* ===== CTA BUTTONS ===== */
.btn-hm-primary {
    background: var(--hm-secondary);
    color: var(--hm-white);
    border: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 14px rgba(196, 30, 42, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-hm-primary:hover {
    background: var(--hm-secondary-dark);
    color: var(--hm-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 30, 42, 0.45);
}

.btn-hm-outline {
    background: transparent;
    color: var(--hm-white);
    border: 2px solid rgba(255,255,255,0.3);
    font-weight: 600;
    transition: all 0.3s;
}
.btn-hm-outline:hover {
    background: rgba(255,255,255,0.1);
    color: var(--hm-white);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.btn-hm-secondary {
    background: var(--hm-white);
    color: var(--hm-primary);
    border: 2px solid var(--hm-gray-100);
    font-weight: 600;
    transition: all 0.3s;
}
.btn-hm-secondary:hover {
    border-color: var(--hm-primary);
    background: rgba(10,36,114,0.04);
    transform: translateY(-2px);
}

/* ===== 1. NAVBAR ===== */
.hm-navbar {
    padding: 18px 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    z-index: 1050;
}
.hm-navbar.scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.hm-navbar .navbar-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--hm-white);
    display: flex;
    align-items: center;
    gap: 10px;
}
.hm-navbar.scrolled .navbar-brand { color: var(--hm-primary); }

.hm-logo-icon {
    width: 36px; height: 36px;
    background: var(--hm-secondary);
    border-radius: var(--hm-radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem;
}

.hm-navbar .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8) !important;
    position: relative;
    padding: 8px 16px !important;
}
.hm-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 16px; right: 16px;
    height: 2px;
    background: var(--hm-secondary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s;
}
.hm-navbar .nav-link:hover::after { transform: scaleX(1); }
.hm-navbar .nav-link:hover { color: var(--hm-white) !important; }

.hm-navbar.scrolled .nav-link { color: var(--hm-gray-500) !important; }
.hm-navbar.scrolled .nav-link:hover { color: var(--hm-primary) !important; }

.hm-nav-cta {
    background: var(--hm-secondary);
    color: white !important;
    border-radius: var(--hm-radius-sm);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 10px 20px !important;
    box-shadow: 0 2px 8px rgba(248,96,46,0.3);
    letter-spacing: 0.02em;
    transition: all 0.3s !important;
}
.hm-nav-cta:hover {
    background: var(--hm-secondary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(248,96,46,0.4);
}

.hm-nav-login {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
}
.hm-navbar.scrolled .hm-nav-login { color: var(--hm-gray-500) !important; }

.hm-lang-toggle {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 5px 10px !important;
    transition: all 0.3s;
    cursor: pointer;
}
.hm-lang-toggle:hover {
    background: rgba(255,255,255,0.1);
    color: white !important;
}
.hm-navbar.scrolled .hm-lang-toggle {
    color: var(--hm-gray-500) !important;
    border-color: var(--hm-gray-200);
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.hm-navbar.scrolled .navbar-toggler { border-color: var(--hm-gray-200); }
.hm-navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2831, 41, 55, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== 2. HERO ===== */
.hm-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #0a0a0f 35%, #12121c 65%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hm-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hm-hero-glow-1, .hm-hero-glow-2 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hm-hero-glow-1 {
    top: -20%; right: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(248,96,46,0.12) 0%, transparent 70%);
    animation: heroFloat 9s ease-in-out infinite;
}
.hm-hero-glow-2 {
    bottom: -25%; left: -8%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
    animation: heroFloat 12s ease-in-out infinite reverse;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(25px, -25px); }
}

.hm-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--hm-white);
    letter-spacing: -0.03em;
    line-height: 1.08;
}
.hm-hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--hm-secondary), #FFAA80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hm-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem; font-weight: 500;
    backdrop-filter: blur(10px);
}
.hm-hero-badge .pulse-dot {
    width: 8px; height: 8px;
    background: var(--hm-green);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
    70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

/* Dashboard mockup */
.hm-dashboard-mock {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--hm-radius-lg);
    padding: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots .r { background: #FF5F56; }
.dash-dots .y { background: #FFBD2E; }
.dash-dots .g { background: #27C93F; }

.dash-kpi {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--hm-radius-sm);
    padding: 14px;
}
.dash-kpi-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.dash-kpi-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}
.dash-kpi-change {
    font-size: 0.65rem;
    color: var(--hm-green);
}

.hm-float-notification {
    position: absolute;
    bottom: -16px; left: -24px;
    background: white;
    border-radius: var(--hm-radius-md);
    padding: 14px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex; align-items: center; gap: 12px;
    animation: floatNotif 4s ease-in-out infinite;
    z-index: 5;
}
@keyframes floatNotif {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.float-icon-wrap {
    width: 40px; height: 40px;
    background: var(--hm-green-light);
    border-radius: var(--hm-radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--hm-green); font-size: 0.9rem;
}

/* ===== 3. SOCIAL PROOF ===== */
.hm-social-proof {
    border-bottom: 1px solid var(--hm-gray-100);
}
.hm-logo-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--hm-gray-200);
    transition: color 0.3s;
    user-select: none;
}
.hm-logo-item:hover { color: var(--hm-gray-400); }

/* ===== 4. PROBLEM CARDS ===== */
.hm-problem-card {
    border: 1px solid var(--hm-gray-100);
    border-radius: var(--hm-radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.hm-problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--hm-secondary);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.hm-problem-card:hover::before { transform: scaleX(1); }
.hm-problem-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.problem-icon {
    width: 56px; height: 56px;
    border-radius: var(--hm-radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.problem-icon.broker { background: rgba(248,96,46,0.1); color: var(--hm-secondary); }
.problem-icon.dispatcher { background: rgba(10,36,114,0.1); color: var(--hm-primary); }
.problem-icon.admin { background: rgba(16,185,129,0.1); color: var(--hm-green); }

/* ===== 5. FEATURE CARDS ===== */
.hm-feature-card {
    border: 1px solid var(--hm-gray-100);
    border-radius: var(--hm-radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hm-feature-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: transparent;
}
.feature-icon-wrap {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--hm-primary), var(--hm-primary-light));
    border-radius: var(--hm-radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.15rem;
}

/* ===== 6. PRICING ===== */
.hm-pricing-card {
    border: 1px solid var(--hm-gray-100);
    border-radius: var(--hm-radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}
.hm-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    border-color: transparent;
}
.hm-pricing-card.popular {
    border: 2px solid var(--hm-secondary);
    box-shadow: 0 10px 30px rgba(248,96,46,0.15);
}
.popular-badge-ribbon {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--hm-secondary);
    color: white;
    padding: 4px 20px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 0 0 var(--hm-radius-sm) var(--hm-radius-sm);
}

.pricing-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hm-gray-900);
    line-height: 1;
}

.pricing-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
}

/* ===== 7. CALCULATOR ===== */
.hm-calculator {
    background: linear-gradient(135deg, #050508 0%, #0e0e18 50%, #161625 100%);
    position: relative;
    overflow: hidden;
}
.hm-calculator::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(248,96,46,0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.calc-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--hm-radius-lg);
    backdrop-filter: blur(20px);
}

.calc-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--hm-radius-sm);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}
.calc-select option { background: var(--hm-primary-dark); color: white; }

/* Range slider */
.calc-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    outline: none;
}
.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px; height: 22px;
    background: var(--hm-secondary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(248,96,46,0.4);
    border: 3px solid white;
}
.calc-range::-moz-range-thumb {
    width: 22px; height: 22px;
    background: var(--hm-secondary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(248,96,46,0.4);
    border: 3px solid white;
}

.calc-checkbox {
    width: 20px; height: 20px;
    border-radius: 5px;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    cursor: pointer;
    appearance: none; -webkit-appearance: none;
    position: relative;
    transition: all 0.2s;
}
.calc-checkbox:checked {
    background: var(--hm-secondary);
    border-color: var(--hm-secondary);
}
.calc-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
}

.calc-result-box {
    background: linear-gradient(135deg, rgba(248,96,46,0.15), rgba(248,96,46,0.05));
    border: 1px solid rgba(248,96,46,0.2);
    border-radius: var(--hm-radius-md);
}

.calc-result-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
}

/* ===== 8. TESTIMONIALS ===== */
.hm-testimonial-card {
    border: 1px solid var(--hm-gray-100);
    border-radius: var(--hm-radius-md);
    transition: all 0.4s;
}
.hm-testimonial-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem;
    color: white;
}

.testimonial-metric {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px;
    background: var(--hm-green-light);
    color: #065F46;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
}

/* ===== 9. FAQ ===== */
.hm-faq-item {
    border: 1px solid var(--hm-gray-100);
    border-radius: var(--hm-radius-md);
    overflow: hidden;
    transition: all 0.3s;
}
.hm-faq-item.active {
    border-color: var(--hm-primary);
    box-shadow: 0 4px 12px rgba(10,36,114,0.08);
}
.hm-faq-question {
    cursor: pointer;
    user-select: none;
    transition: color 0.3s;
}
.hm-faq-question:hover { color: var(--hm-primary) !important; }

.hm-faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s;
    flex-shrink: 0;
}
.hm-faq-item.active .hm-faq-icon {
    background: var(--hm-primary) !important;
    color: white !important;
    transform: rotate(180deg);
}

.hm-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== 10. FINAL CTA ===== */
.hm-final-cta {
    background: linear-gradient(135deg, #000000 0%, #0a0a12 50%, #141422 100%);
    position: relative;
    overflow: hidden;
}
.hm-final-cta::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* ===== 11. FOOTER ===== */
.hm-footer a { transition: color 0.3s; }
.hm-footer a:hover { color: white !important; }

.hm-social-link {
    width: 36px; height: 36px;
    border-radius: var(--hm-radius-sm);
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--hm-gray-400);
    transition: all 0.3s;
}
.hm-social-link:hover {
    background: var(--hm-secondary);
    color: white;
}

/* ===== MOBILE STICKY CTA ===== */
.hm-mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1040;
}

/* ===== NAVBAR LOGO ===== */
.hm-navbar-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    padding: 2px 4px;
    transition: all 0.35s;
}
.hm-navbar.scrolled .hm-navbar-logo {
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
}

/* ===== CONTACT FORM INPUTS ===== */
.hm-form-input {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: var(--hm-radius-sm);
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.hm-form-input:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--hm-secondary);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(196, 30, 42, 0.15);
    outline: none;
}
.hm-form-input::placeholder {
    color: rgba(255,255,255,0.35);
}
.hm-form-input option {
    background: var(--hm-gray-900);
    color: #fff;
}
#formAlert .alert {
    font-size: 0.88rem;
    border-radius: var(--hm-radius-sm);
    padding: 10px 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1279px) {
    .pricing-grid-4 { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 767px) {
    .hm-hero-visual { display: none !important; }
    .hm-mobile-sticky { display: block; }
    .hm-footer { padding-bottom: 80px !important; }
    .hm-hero { text-align: center; }
    .hm-hero .d-flex { justify-content: center; }
}

@media (max-width: 479px) {
    .hm-hero h1 { font-size: 2rem; }
    .hm-hero-stats { flex-direction: column; gap: 12px !important; align-items: center; }
}
