        :root {
            --ink: #0d2a26;
            --text-primary: #53585a;
            --leaf: #75b900;
            --mint: #f7f7f5;
            --line: #e2e2d9;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        #app {
            padding-top: 80px;
        }

        body {
            margin: 0;
            color: #999999;
            background: #F8F7F6;
            font-family: 'Lato', 'Open Sans', 'Noto Sans SC', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .site-shell {
            width: min(1260px, calc(100% - 40px));
            margin: 0 auto;
        }

        .glass-nav {
            position: relative;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 226, 217, 0.85);
}
/* Mega-menu container */
#navMegaMenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    display: none;
    padding-top: 0;
    pointer-events: none;
}
#navMegaMenu.open {
    display: block;
}
.mega-panel {
    display: none;
    background: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 24px 56px rgba(13, 42, 38, 0.18);
    padding: 28px 20px;
    pointer-events: auto;
}
.mega-panel.active {
    display: block;
}
.mega-panel-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
}
.mega-col {
    flex: 1;
    min-width: 0;
}
.mega-col-title {
    font-size: 13px;
    font-weight: 700;
    color: #75b900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e2d9;
}
.mega-col-items {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mega-item {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
    text-decoration: none;
    line-height: 1.4;
}
.mega-item:hover {
    background: #f7f7f5;
    color: #75b900;
}
.mega-item.mega-item--all {
    margin-top: 4px;
    font-weight: 700;
    color: #75b900;
    font-size: 13px;
}

/* Feature card column */
.mega-col-feature {
    flex: 0 0 220px;
    max-width: 220px;
}
.mega-feature-card {
    border-radius: 12px;
    overflow: hidden;
    background: #f7f7f5;
    border: 1px solid #e2e2d9;
}
.mega-feature-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}
.mega-feature-body {
    padding: 14px 16px 16px;
}
.mega-feature-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}
.mega-feature-text {
    font-size: 13px;
    line-height: 1.5;
    color: #999999;
    margin-bottom: 12px;
}
.mega-feature-link {
    font-size: 13px;
    font-weight: 700;
    color: #75b900;
    text-decoration: none;
    transition: color 0.15s;
}
.mega-feature-link:hover {
    color: #5c9a00;
    text-decoration: underline;
}

        .nav-link {
            position: relative;
            color: #4b5563;
            font-size: 15px;
            font-weight: 700;
            padding: 10px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 4px;
            height: 2px;
            border-radius: 999px;
            background: var(--leaf);
            opacity: 0;
            transform: scaleX(0.5);
            transition: 0.2s ease;
        }

        .nav-link:hover,
        .nav-link.nav-hover,
        .nav-link.nav-active {
            color: var(--leaf);
        }

        .nav-link.nav-active::after {
            opacity: 1;
            transform: scaleX(1);
        }


/* Navigation dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: -16px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(13, 42, 38, 0.14);
    padding: 10px 0;
    min-width: 170px;
    z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}
.nav-dropdown-link {
    display: block;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}
.nav-dropdown-link:hover {
    background: #f7f7f5;
    color: var(--leaf);
}

/* Mobile: keep dropdown items visible inline */
@media (max-width: 1023px) {
    .nav-dropdown-menu {
        display: block;
        position: static;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: transparent;
        min-width: auto;
    }
    .nav-dropdown-link {
        padding-left: 28px;
        font-size: 13px;
    }
}

        .btn-primary,
        .btn-outline,
        .btn-soft {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 44px;
            border-radius: 999px;
            padding: 0 22px;
            font-weight: 700;
            transition: 0.22s ease;
            white-space: nowrap;
        }

        .btn-primary {
            color: white;
            background: var(--leaf);
            box-shadow: 0 14px 30px rgba(117, 185, 0, 0.24);
        }

        .btn-primary:hover {
            background: #5e9900;
            transform: translateY(-2px);
        }

        .btn-outline {
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.58);
        }

        .btn-outline:hover {
            color: var(--text-primary);
            background: white;
        }

        .btn-soft {
            color: var(--text-primary);
            background: #f1f5ef;
        }

        .section {
            padding: 86px 0;
        }

        .section-kicker {
            color: var(--leaf);
            font-size: 15px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .section-title {
            margin-top: 10px;
            color: var(--text-primary);
            font-size: clamp(30px, 4vw, 46px);
            line-height: 1.12;
            font-weight: 800;
        }

        .section-lead {
            max-width: 720px;
            margin-top: 16px;
            color: #999999;
            font-size: 17px;
            line-height: 1.8;
        }

        .hero-bg {
            transition: opacity 0.2s ease;

            min-height: 680px;
            background-size: cover;
            background-position: center;
            transition: background-image 0.7s ease;
        }

        .hero-panel {
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 24px;
            background: rgba(13, 42, 38, 0.46);
            backdrop-filter: blur(10px);
        }

        .brand-logo {
            height: 48px;
            width: auto;
            object-fit: contain;
            object-position: left center;
            flex: 0 0 auto;
        }

        .footer-logo {
            width: min(390px, 100%);
            height: auto;
            display: block;
            border-radius: 10px;
            background: white;
            padding: 8px 10px;
        }

        .hero-stat {
            border-left: 1px solid rgba(255, 255, 255, 0.20);
            padding-left: 22px;
        }

        .hero-dot {
            width: 34px;
            height: 5px;
            border: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.45);
            cursor: pointer;
            transition: 0.2s ease;
        }

        .hero-dot.active {
            width: 52px;
            background: var(--leaf);
        }

        .card {
            height: 100%;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 14px 40px rgba(13, 42, 38, 0.06);
            overflow: hidden;
            transition: 0.22s ease;
        }

        .card:hover {
            border-color: rgba(117, 185, 0, 0.36);
            box-shadow: 0 24px 64px rgba(13, 42, 38, 0.12);
            transform: translateY(-4px);
        }

        .card-media {
            width: 100%;
            height: 198px;
            object-fit: cover;
            background: #e9f0e7;
        }

        .compact-media {
            width: 100%;
            height: 128px;
            border-radius: 14px;
            object-fit: cover;
            background: #e9f0e7;
        }

        .news-media {
            width: calc(100% + 48px);
            height: 170px;
            margin: -24px -24px 20px;
            object-fit: cover;
            background: #e9f0e7;
        }

        .icon-box {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--leaf);
            background: var(--mint);
            font-size: 20px;
        }

        .more-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 20px;
            color: var(--leaf);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0;
        }

        button.more-link {
            border: 0;
            background: transparent;
            padding: 0;
            cursor: pointer;
            font-family: inherit;
        }

        .team-visual {
            min-height: 132px;
            border-radius: 22px;
            background:
                radial-gradient(circle at 18% 22%, rgba(117, 185, 0, 0.2), transparent 28%),
                radial-gradient(circle at 78% 28%, rgba(37, 151, 124, 0.16), transparent 30%),
                linear-gradient(135deg, #f7fbf5, #e9f5ec);
            position: relative;
            overflow: hidden;
        }

        .team-visual::after {
            content: '';
            position: absolute;
            inset: 24px;
            border: 1px solid rgba(117, 185, 0, 0.22);
            border-radius: 999px;
            transform: rotate(-8deg);
        }


        }

        .page-hero {
            min-height: 400px;
            display: flex;
            align-items: center;
            padding: 66px 0;
            color: #ffffff;
            background-size: cover;
            background-position: center;
        }
        .page-hero .section-kicker {
            color: var(--leaf);
        }
        .page-hero h2 {
            color: #ffffff;
        }
        .page-hero p {
            color: #ffffff;
        }
        .page-hero[style*="background-image: none"] {
            background:
                linear-gradient(135deg, rgba(13, 42, 38, 0.78), rgba(159, 106, 22, 0.64)),
                var(--ink);
        }

        .detail-grid {
            display: grid;
            grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
            gap: 34px;
            align-items: start;
        }

        .info-list li {
            display: flex;
            gap: 12px;
            padding: 14px 0;
            color: #4b5563;
            border-bottom: 1px solid #e2e2d9;
        }

        .product-filter {
            border: 1px solid var(--line);
            border-radius: 999px;
            background: white;
            color: #53585a;
            cursor: pointer;
            font-size: 14px;
            font-weight: 800;
            padding: 11px 18px;
            transition: 0.2s ease;
            white-space: nowrap;
        }

        .product-filter:hover {
            border-color: #75b900;
            color: #75b900;
            background: #f0f8e8;
        }
        .product-filter.active {
            border-color: #75b900;
            color: white;
            background: #75b900;
            box-shadow: 0 8px 20px rgba(117, 185, 0, 0.25);
        }

        .price-pill {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            border-radius: 999px;
            color: #999999;
            background: var(--mint);
            padding: 0 12px;
            font-size: 15px;
            font-weight: 800;
        }

        .spec-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 18px;
        }

        .spec-table th,
        .spec-table td {
            padding: 15px 16px;
            border-bottom: 1px solid var(--line);
            text-align: left;
            vertical-align: top;
        }

        .spec-table th {
            width: 128px;
            color: #999999;
            background: #f6faf4;
            font-weight: 800;
        }

        .spec-table tr:last-child th,
        .spec-table tr:last-child td {
            border-bottom: 0;
        }

        .card-link {
            font-size: 14px;
            font-weight: 700;
            color: var(--leaf);
            letter-spacing: 0;
        }

        .floating-contact {
            position: fixed;
            right: 24px;
            bottom: 110px;
            z-index: 80;
            display: grid;
            gap: 10px;
        }

        .floating-btn,
        .back-to-top {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            background: #0d2a26;
            box-shadow: 0 16px 34px rgba(13, 42, 38, 0.20);
            cursor: pointer;
            transition: 0.2s ease;
        }

        .floating-btn:hover,
        .back-to-top:hover {
            background: var(--leaf);
            transform: translateY(-2px);
        }

        .phone-tooltip {
            /* kept for backward compatibility; phone now uses phone-tooltip-inline */
            display: none;
        }
        .phone-tooltip-inline {
            position: fixed;
            right: 84px;
            bottom: 170px;
            z-index: 90;
            display: flex;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.18s ease, visibility 0.18s ease;
            align-items: center;
            border-radius: 14px;
            background: var(--ink);
            color: white;
            padding: 10px 14px;
            font-size: 15px;
            font-weight: 800;
            white-space: nowrap;
            box-shadow: 0 18px 38px rgba(13, 42, 38, 0.24);
        }

        .timeline-line {
            position: relative;
        }

        .timeline-line::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 20px;
            bottom: 20px;
            width: 2px;
            background: linear-gradient(180deg, var(--leaf), rgba(117, 185, 0, 0.12));
        }

        .timeline-dot {
            position: relative;
            z-index: 1;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            background: var(--leaf);
            box-shadow: 0 12px 28px rgba(117, 185, 0, 0.24);
            font-weight: 800;
        }

        .timeline-dot span {
            font-size: 15px;
            line-height: 1;
        }

        .timeline-card {
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .timeline-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 22px 46px rgba(13, 42, 38, 0.12);
        }

        .timeline-card:nth-child(odd) {
            animation: floatY 8s ease-in-out infinite;
        }

        .timeline-card:nth-child(even) {
            animation: floatY 8s ease-in-out infinite reverse;
        }

        .timeline-card::after {
            content: '';
            position: absolute;
            left: -18px;
            top: 28px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--leaf);
            box-shadow: 0 0 0 6px rgba(117, 185, 0, 0.12);
        }

        @keyframes floatY {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(18px);
        }

        .profile-section {
            padding: 66px 0;
        }

        .profile-section .section-title {
            font-size: clamp(24px, 3vw, 34px);
        }

        .profile-section .section-lead {
            margin-top: 12px;
            font-size: 15px;
            line-height: 1.7;
        }

        .profile-section .timeline-line {
            padding: 18px;
            gap: 16px;
        }

        .profile-section .timeline-card {
            padding: 16px 18px;
        }

        .qrcode-popup {
            position: fixed;
            right: 84px;
            bottom: 162px;
            z-index: 90;
            display: none;
            width: 156px;
            padding: 12px;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: white;
            box-shadow: 0 24px 60px rgba(13, 42, 38, 0.18);
            text-align: center;
        }

        .qrcode-popup img {
            width: 132px;
            height: 132px;
            border-radius: 12px;
            object-fit: cover;
        }

        .back-to-top {
            position: fixed;
            right: 24px;
            bottom: 42px;
            z-index: 80;
            opacity: 0;
            pointer-events: none;
        }

        .back-to-top.show {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu {
            display: none;
        }

        .mobile-menu.open {
            display: block;
            max-height: calc(100vh - 72px);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        @media (max-width: 900px) {
            .site-shell {
                width: min(100% - 28px, 1180px);
            }

            .hero-bg {
            transition: opacity 0.2s ease;

                min-height: 720px;
            }

            .brand-logo { height: 38px; }

            .hero-panel {
                padding: 22px;
            }

            .hero-stat {
                border-left: 0;
                padding-left: 0;
            }

            .detail-grid {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 66px 0;
            }

            .floating-contact,
            .back-to-top,
            .qrcode-popup {
                right: 16px;
            }

            .qrcode-popup {
                right: 76px;
            }

            .phone-tooltip {
                display: none;
            }
            .phone-tooltip-inline {
                right: 76px;
                bottom: 170px;
            }
        }

/* Accessibility: respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .timeline-card:nth-child(odd),
    .timeline-card:nth-child(even) {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .hero-bg { transition: none; }
    .timeline-card:hover { transform: none; }
    .btn-primary:hover { transform: none; }
    .floating-btn:hover,
    .back-to-top:hover { transform: none; }
}


/* === Navigation submenu === */
.nav-dropdown-item {
    position: relative;
}
.nav-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -8px;
    min-width: 220px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    padding: 10px 0;
    z-index: 50;
}
.nav-dropdown-item {
    padding-right: 12px;
}
.nav-dropdown-item:hover .nav-submenu {
    display: block;
}
.nav-dropdown-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    z-index: 1;
}
.nav-submenu-link {
    display: block;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    transition: background .12s ease, color .12s ease;
}
.nav-submenu-link:hover {
    background: #f7f7f5;
    color: #75b900;
}
.nav-dropdown-link--parent {
    padding-right: 20px;
}

/* Mobile submenu: flat indented */
@media (max-width: 1023px) {
    .nav-submenu {
        display: block;
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin: 0;
    }
    .nav-submenu-link {
        padding: 6px 20px 6px 48px;
        font-size: 13px;
        color: #999999;
    }
}


        .news-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .news-timeline::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, rgba(117, 185, 0, 0.4), rgba(117, 185, 0, 0.08));
        }

        .news-timeline-item {
            position: relative;
            padding-left: 60px;
            padding-bottom: 32px;
        }

        .news-timeline-item:last-child {
            padding-bottom: 0;
        }

        .news-timeline-dot {
            position: absolute;
            left: 16px;
            top: 28px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--leaf, #75b900);
            box-shadow: 0 0 0 6px rgba(117, 185, 0, 0.12);
            z-index: 1;
        }

        .news-timeline-card {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 24px;
            padding: 20px;
            border-radius: 16px;
            background: white;
            box-shadow: 0 8px 28px rgba(13, 42, 38, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .news-timeline-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(13, 42, 38, 0.12);
        }

        .news-timeline-media {
            width: 200px;
            min-width: 200px;
            height: 140px;
            object-fit: cover;
            border-radius: 12px;
            flex-shrink: 0;
        }

        .news-timeline-media-wrap {
            position: relative;
            flex-shrink: 0;
        }

        .news-timeline-tag {
            position: absolute;
            top: 8px;
            left: 8px;
            padding: 3px 10px;
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            background: #75b900;
            border-radius: 6px;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .news-timeline-tag--industry {
            background: #2563eb;
        }

        .news-timeline-body {
            flex: 1;
            min-width: 0;
        }

        .news-timeline-body .more-link {
            display: inline-block;
        }

        .line-clamp-3 {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .news-timeline-card {
                flex-direction: column;
            }

            .news-timeline-media {
                width: 100%;
                min-width: unset;
                height: 180px;
            }

            .news-timeline::before {
                left: 16px;
            }

            .news-timeline-item {
                padding-left: 44px;
            }

            .news-timeline-dot {
                left: 8px;
            }
        }

/* Override Tailwind text colors */
.text-slate-600 {
    color: #999999 !important;
}

/* Product sidebar */
.product-layout {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    align-items: flex-start;
}
.product-sidebar {
    flex-shrink: 0;
    width: 200px;
    top: 80px;
}
.product-sidebar-item {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    color: #53585a;
    transition: all 0.15s ease;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.3;
    margin-bottom: 2px;
}
.product-sidebar-item:hover {
    background: #eef8e8;
    color: #75b900;
}
.product-sidebar-item.active {
    background: #75b900;
    color: white;
    box-shadow: 0 4px 12px rgba(117, 185, 0, 0.25);
}
.product-sidebar-item .count {
    float: right;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    background: #f0f0f0;
    padding: 1px 7px;
    border-radius: 999px;
    margin-top: 1px;
}
.product-sidebar-item.active .count {
    background: rgba(255,255,255,0.2);
    color: white;
}
.product-sidebar-divider {
    height: 1px;
    background: #e2e2d9;
    margin: 8px 0;
}
@media (max-width: 767px) {
    .product-layout {
        flex-direction: column;
    }
    .product-sidebar {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
    }
    .product-sidebar-item {
        font-size: 13px;
        padding: 7px 12px;
    }
    .product-sidebar-item .count {
        display: none;
    }
    .product-sidebar-divider {
        display: none;
    }
}

/* Product sidebar sub-items */
.product-sidebar-sublist {
    padding-left: 16px;
    margin-bottom: 4px;
}
.product-sidebar-subitem {
    display: block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #6c6c6c;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.12s ease;
    line-height: 1.3;
}
.product-sidebar-subitem:hover {
    color: #75b900;
    background: #eef8e8;
}
@media (max-width: 767px) {
    .product-sidebar-sublist {
        display: none;
    }
}

/* Breadcrumb navigation */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    margin-bottom: 16px;
    font-size: 13px;
}
.breadcrumb-item {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.15s;
    font-weight: 500;
    padding: 2px 4px;
    border-radius: 4px;
}
.breadcrumb-item:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.breadcrumb-current {
    color: rgba(255,255,255,0.9);
    font-weight: 700;
}
.breadcrumb-sep {
    color: rgba(255,255,255,0.35);
    font-size: 14px;
    padding: 0 2px;
}

/* Breadcrumb on light background (below page hero) */
.breadcrumb-light {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 0;
}
.breadcrumb-light .breadcrumb-item {
    color: #6b7280;
}
.breadcrumb-light .breadcrumb-item:hover {
    color: #75b900;
    background: #eef8e8;
}
.breadcrumb-light .breadcrumb-current {
    color: #53585a;
}
.breadcrumb-light .breadcrumb-sep {
    color: #b0b0b0;
}

/* Service card without image - larger icon + top accent */
.icon-box--large {
    width: 52px;
    height: 52px;
    font-size: 20px;
    background: linear-gradient(135deg, #eef8e8, #dcecd4);
    border-radius: 14px;
}
.card.service-card {
    border-top: 3px solid #75b900 !important;
}
@media (max-width: 767px) {
    .icon-box--large {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
}

/* Footer top accent */
footer {
    border-top: 3px solid #75b900;
}

/* Mobile: prevent card images from being clipped by rounded corners */
@media (max-width: 767px) {
    .card {
        overflow: visible;
    }
    .card img {
        margin: 8px 8px 0;
        width: calc(100% - 16px);
        height: 220px;
        border-radius: 12px;
        object-fit: cover;
    }
}

/* Home page news section - compact spacing */
.section-news {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}
