:root {
    --bg: #f5ecde;
    --paper: #fffaf2;
    --paper-soft: #f1e4d0;
    --paper-accent: #e9d3bb;
    --text: #1f231c;
    --muted: #6f6d63;
    --primary: #2d5a3d;
    --primary-strong: #1d3e2a;
    --gold: #c76f4a;
    --line: rgba(31, 35, 28, 0.1);
    --shadow: 0 18px 40px rgba(101, 70, 36, 0.1);
    --container: 1180px;
    --radius-xl: 26px;
    --radius-lg: 18px;
    --radius-md: 14px;
}


* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255, 249, 239, 0.94), rgba(245, 236, 222, 0.98)),
        radial-gradient(circle at top left, rgba(199, 111, 74, 0.09), transparent 28%);
}

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

img {
    max-width: 100%;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.container-header {
    width: 100%;
    max-width: none;
    padding-inline: 10px;
}

.container-showcase {
    width: calc(100% - 24px);
    max-width: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(45, 90, 61, 0.97), rgba(29, 62, 42, 0.96));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
}

.site-header.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.nav-row {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand-mark,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 144px;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.02rem;
    flex: 1;
    max-width: none;
    margin: 0 12px;
}

.main-nav > a,
.nav-dropdown-label {
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Sora', 'Manrope', sans-serif;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-size: 1em;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: none;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-label {
    border: none;
    background: transparent;
    appearance: none;
}

.main-nav > a.active,
.main-nav > a:hover,
.nav-dropdown:hover .nav-dropdown-label,
.nav-dropdown.is-open .nav-dropdown-label {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    min-width: 220px;
    display: grid;
    gap: 2px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(24, 53, 34, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    padding: 11px 13px;
    border-radius: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: rgba(199, 111, 74, 0.16);
    color: #fff;
}

.nav-cta {
    padding: 0 18px;
    min-height: 42px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff !important;
    font-weight: 700;
}

.header-link {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 700;
    color: #fff;
    flex: 0 0 auto;
}

.header-link svg {
    width: 18px;
    height: 18px;
}

.home-showcase {
    padding: 12px 0 10px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.95fr) minmax(360px, 1.05fr);
    gap: 12px;
    align-items: stretch;
}

.hero-slideshow {
    position: relative;
    overflow: hidden;
    background: #07141c;
    min-height: 500px;
    height: 100%;
    border-radius: 28px;
    box-shadow: 0 26px 60px rgba(9, 26, 16, 0.18);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background-position: center;
    background-size: cover;
    transition: opacity 0.6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide-inner {
    min-height: 500px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 34px;
    padding-bottom: 118px;
    padding-left: 24px;
    padding-right: 24px;
}

.hero-slide-copy {
    max-width: 620px;
    color: #fff;
}

.hero-slide-eyebrow {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero-slide-lead {
    display: block;
    color: #e6b07f;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 0.92rem;
    margin-bottom: 6px;
}

.hero-slide h1 {
    margin: 0;
    max-width: 620px;
    color: #fff;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(2.3rem, 3.8vw, 3.9rem);
    line-height: 1.06;
    letter-spacing: 0;
    font-weight: 700;
}

.hero-slide p {
    margin: 16px 0 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.72;
}

.hero-slide-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.hero-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-action {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: 0.96rem;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero-action:hover {
    transform: translateY(-2px);
}

.hero-action-primary {
    background: linear-gradient(135deg, #cf7a53, #b85d3c);
    color: #fff7f1;
    box-shadow: 0 14px 30px rgba(184, 93, 60, 0.24);
}

.hero-action-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    backdrop-filter: blur(10px);
}

.hero-slide-chips span,
.hero-slide-region {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(10px);
}

.hero-search-wrap {
    position: relative;
    margin-top: -94px;
    z-index: 3;
    display: grid;
    justify-items: center;
    padding-inline: 20px;
}

.hero-floating-search {
    width: min(100%, 720px);
    padding: 12px;
    border-radius: 18px;
    background: rgba(247, 247, 247, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.hero-floating-search-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-floating-search input {
    flex: 1;
    height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(13, 32, 42, 0.08);
    border-radius: 14px;
    background: #fff;
    font: inherit;
    color: #1f2937;
}

.hero-floating-search button {
    min-width: 84px;
    height: 38px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #2d5a3d, #1d3e2a);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.hero-floating-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.hero-floating-links a {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(199, 111, 74, 0.12);
    color: #9f5235;
    font-size: 0.76rem;
    font-weight: 600;
}

.hero-slide-dots {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    justify-content: center;
}

.hero-slide-dots button {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: width 0.2s ease, background-color 0.2s ease, border-radius 0.2s ease;
}

.hero-slide-dots button.is-active {
    width: 26px;
    border-radius: 999px;
    background: #c76f4a;
}

.section-block,
.article-shell {
    padding: 34px 0 46px;
}

.section-tight {
    padding-top: 10px;
    padding-bottom: 18px;
}

.section-stats-overlap {
    margin-top: -18px;
    position: relative;
    z-index: 3;
}

.leader-grid,
.footer-grid {
    display: grid;
    gap: 18px;
}

.eyebrow,
.service-icon,
.gallery-overlay span {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--gold);
}

.welcome-card h2,
.section-head h2 {
    margin: 10px 0 14px;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.welcome-card p,
.leader-panel p,
.potency-card p,
.news-body p,
.list-card p,
.prose-card p,
.article-content,
.footer-grid p,
.footer-grid a {
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
}

.welcome-card p {
    font-size: 1.04rem;
    line-height: 1.78;
}

.welcome-highlights {
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.welcome-highlights div {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(199, 111, 74, 0.08);
    border: 1px solid rgba(199, 111, 74, 0.14);
}

.welcome-highlights strong {
    display: block;
    margin-bottom: 4px;
    color: var(--primary-strong);
}

.welcome-highlights span {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.welcome-card .text-link {
    margin-top: 18px;
    display: inline-block;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: 1rem;
}

.text-link {
    color: var(--gold);
    font-weight: 700;
}

.welcome-image {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.06)),
        url('https://images.unsplash.com/photo-1521295121783-8a321d551ad2?auto=format&fit=crop&w=1400&q=80') center/cover;
}

.welcome-card {
    padding: 28px 30px 24px;
    border-radius: 26px;
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid rgba(199, 111, 74, 0.12);
    box-shadow: var(--shadow);
    min-height: 500px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.welcome-card-visual {
    position: relative;
    min-height: 250px;
    margin-top: 18px;
    flex: 1;
}

.glass-panel {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 240px;
    display: grid;
    gap: 14px;
}

.mini-card,
.prose-card,
.article-card,
.list-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(199, 111, 74, 0.12);
    box-shadow: var(--shadow);
}

.mini-card strong {
    display: block;
    margin-top: 8px;
    font-family: 'Manrope', sans-serif;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.section-head.compact {
    margin-bottom: 18px;
}

.stats-strip,
.home-shortcuts {
    display: grid;
    gap: 18px;
}

.stats-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-panel-home {
    padding: 22px 24px;
    border-radius: 20px;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(199, 111, 74, 0.12);
    box-shadow: var(--shadow);
}

.stat-panel-home span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 10px;
}

.stat-panel-home strong {
    display: block;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(1.55rem, 2vw, 2rem);
    letter-spacing: 0;
    color: var(--primary-strong);
}

.home-shortcuts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shortcut-card {
    display: block;
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(233, 211, 187, 0.45));
    border: 1px solid rgba(199, 111, 74, 0.12);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shortcut-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 34px rgba(84, 60, 18, 0.1);
    border-color: rgba(199, 111, 74, 0.28);
}

.shortcut-card strong {
    display: block;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: 1.08rem;
    margin-bottom: 10px;
    color: var(--primary-strong);
}

.shortcut-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.68;
}

.news-grid,
.service-grid,
.gallery-grid {
    display: grid;
    gap: 22px;
}

.news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card,
.service-card,
.potency-card,
.gallery-card {
    overflow: hidden;
    border-radius: 16px;
    background: var(--paper);
    border: 1px solid rgba(199, 111, 74, 0.08);
    box-shadow: 0 10px 24px rgba(84, 60, 18, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-card:hover,
.potency-card:hover,
.gallery-card:hover,
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(199, 111, 74, 0.24);
    box-shadow: 0 18px 34px rgba(101, 70, 36, 0.12);
}

.news-thumb,
.article-image,
.potency-image,
.gallery-card {
    background-position: center;
    background-size: cover;
}

.news-thumb {
    min-height: 220px;
}

.news-body,
.service-card,
.potency-card > div,
.gallery-overlay,
.list-card {
    padding: 22px;
}

.news-body span,
.article-meta {
    color: var(--muted);
    font-size: 0.88rem;
}

.news-card h3,
.potency-card h3,
.service-card h3,
.gallery-overlay h3,
.list-card h3,
.prose-card h2,
.leader-panel h2 {
    color: var(--primary-strong);
}

.news-card h3,
.leader-panel h2,
.potency-card h3,
.service-card h3,
.gallery-overlay h3,
.list-card h3,
.prose-card h2 {
    margin: 10px 0 0;
    font-family: 'Manrope', sans-serif;
    line-height: 1.35;
}

.alt-surface {
    background: linear-gradient(180deg, rgba(233, 211, 187, 0.42), rgba(233, 211, 187, 0.14));
}

.leader-grid {
    grid-template-columns: 340px minmax(0, 1fr);
    align-items: start;
}

.leader-panel {
    padding: 24px 12px 0 0;
}

.leader-panel strong {
    display: block;
    margin-top: 8px;
    color: var(--gold);
}

.leader-portrait {
    width: 219px;
    height: 219px;
    border-radius: 50%;
    margin: 12px 0 18px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.08)),
        url('https://theme.co.id/webdesa/wp-content/uploads/2024/11/pak-dek.webp') center/cover;
}

.signature-mark {
    margin-top: 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-style: italic;
    color: rgba(199, 111, 74, 0.58);
}

.potency-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.potency-grid.full {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.umkm-shell {
    display: grid;
    gap: 24px;
}

.umkm-overview {
    padding: 30px 32px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(207, 122, 83, 0.1), transparent 26%),
        linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(248, 239, 227, 0.96));
    border: 1px solid rgba(199, 111, 74, 0.14);
    box-shadow: 0 18px 40px rgba(94, 68, 34, 0.08);
}

.umkm-overview-head {
    margin-bottom: 16px;
}

.umkm-overview-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(32, 77, 50, 0.08);
    border: 1px solid rgba(32, 77, 50, 0.1);
    color: var(--primary);
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
}

.umkm-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 16px;
}

.umkm-toolbar-copy,
.umkm-toolbar-note {
    min-height: 78px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(199, 111, 74, 0.14);
}

.umkm-toolbar-copy strong,
.umkm-toolbar-note {
    display: block;
    color: var(--primary-strong);
    font-family: 'Sora', 'Manrope', sans-serif;
}

.umkm-toolbar-copy strong {
    font-size: 1.02rem;
}

.umkm-toolbar-copy span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.umkm-toolbar-note {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.potency-grid.umkm-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}

.umkm-grid--centered {
    justify-content: center;
}

.umkm-card-link {
    display: block;
}

.umkm-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 270px;
    width: min(100%, 300px);
    max-width: 300px;
    min-height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 249, 242, 0.94));
}

.potency-image {
    min-height: 150px;
}

.potency-image.tall {
    min-height: 220px;
}

.umkm-card .potency-image.tall {
    min-height: 136px;
}

.umkm-card > div {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px 14px 12px;
}

.umkm-card-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(207, 122, 83, 0.12);
    color: #b35d3a;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.umkm-card h3 {
    margin-top: 10px;
    font-size: 1.02rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.umkm-card p {
    margin-top: 8px;
    font-size: 0.88rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.umkm-card-footer {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid rgba(199, 111, 74, 0.12);
}

.umkm-pagination-wrap {
    width: 100%;
    margin-top: 18px;
    margin-bottom: 26px;
    display: flex;
    justify-content: flex-end;
    clear: both;
}

.umkm-pagination {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 252, 247, 0.98);
    border: 1px solid rgba(51, 94, 67, 0.16);
    box-shadow: 0 12px 24px rgba(95, 69, 34, 0.06);
    max-width: 100%;
    min-height: 50px;
}

main.section-block .umkm-shell {
    position: relative;
    z-index: 1;
    padding-bottom: 16px;
}

main.section-block .potency-grid.umkm-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 6px;
}

main.section-block .potency-card.umkm-card {
    width: 100%;
    max-width: none;
    min-height: 0;
}

main.section-block .potency-card.umkm-card .potency-image.tall {
    min-height: 150px;
}

main.section-block .potency-card.umkm-card > div {
    padding: 12px 12px 12px;
}

main.section-block .potency-card.umkm-card .umkm-card-tag {
    min-height: 24px;
    padding: 0 9px;
    font-size: 0.68rem;
}

main.section-block .potency-card.umkm-card h3 {
    margin-top: 8px;
    font-size: 0.98rem;
    line-height: 1.32;
    -webkit-line-clamp: 1;
    min-height: auto;
}

main.section-block .potency-card.umkm-card p {
    margin-top: 6px;
    font-size: 0.84rem;
    line-height: 1.42;
    -webkit-line-clamp: 1;
    min-height: auto;
}

main.section-block .potency-card.umkm-card .umkm-card-footer {
    padding-top: 10px;
    gap: 8px;
}

main.section-block .potency-card.umkm-card .umkm-price {
    font-size: 0.98rem;
}

main.section-block .potency-card.umkm-card .umkm-wa-button {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.76rem;
}

.site-footer {
    position: relative;
    z-index: 0;
    clear: both;
}

.umkm-pagination .umkm-page-link {
    min-width: 44px;
    height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fffdf9;
    border-right: 1px solid rgba(51, 94, 67, 0.12);
    color: #365f48;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.umkm-pagination .umkm-page-link:hover {
    background: rgba(35, 74, 50, 0.08);
    color: var(--primary-strong);
}

.umkm-pagination .umkm-page-link.is-active {
    background: linear-gradient(180deg, #335e43, #234a32);
    color: #fff;
    font-weight: 700;
}

.umkm-pagination .umkm-page-link:last-child {
    border-right: 0;
}

.umkm-price {
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: 1rem;
    color: var(--primary-strong);
}

.umkm-wa-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #cf7a53, #b85d3c);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    text-decoration: none;
}

.umkm-page-nav {
    padding: 0 16px;
    font-size: 0.84rem;
}

.umkm-empty-state {
    padding: 40px;
    text-align: center;
}

.service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-icon {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 50%;
    color: var(--gold);
    background: rgba(199, 111, 74, 0.12);
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
    position: relative;
    min-height: 280px;
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0 0;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(34, 25, 21, 0.94));
}

.page-hero {
    padding: 40px 0 16px;
}

.page-hero-inner {
    padding: 34px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(45, 90, 61, 0.96), rgba(29, 62, 42, 0.94));
    color: #fff;
    box-shadow: var(--shadow);
}

.container-showcase.page-hero-inner {
    width: calc(100% - 24px);
    max-width: none;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
}

.article-wrap {
    max-width: 860px;
}

.article-wrap-wide {
    max-width: 1180px;
}

.article-card {
    padding: 30px;
}

.article-image {
    min-height: 420px;
    margin: 24px 0;
    border-radius: 20px;
}

.stack-list {
    display: grid;
    gap: 20px;
}

.muted {
    color: var(--muted);
}

.info-grid,
.infographic-grid {
    display: grid;
    gap: 18px;
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid div,
.stat-panel {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid rgba(199, 111, 74, 0.12);
}

.info-grid strong {
    color: var(--gold);
}

.info-grid strong {
    display: block;
    margin-bottom: 8px;
}

.kopdes-layout,
.kopdes-content-grid {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
}

.kopdes-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
}

.kopdes-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kopdes-main-card h2,
.kopdes-content-grid h2 {
    margin: 10px 0 14px;
}

.kopdes-main-card p {
    margin-top: 0;
}

.kopdes-media-card {
    display: grid;
    gap: 16px;
}

.kopdes-media {
    min-height: 280px;
    border-radius: 20px;
    background-position: center;
    background-size: cover;
}

.kopdes-contact-card {
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(239, 224, 197, 0.46), rgba(239, 224, 197, 0.22));
}

.kopdes-contact-card strong {
    display: block;
    margin-bottom: 6px;
}

.kopdes-contact-card p {
    margin: 0 0 14px;
}

.kopdes-list {
    display: grid;
    gap: 14px;
}

.kopdes-list-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kopdes-list-item {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid rgba(29, 32, 24, 0.08);
}

.kopdes-list-item strong {
    display: block;
    line-height: 1.6;
}

.profile-grid,
.profile-content-grid,
.profile-stats-grid {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
}

.profile-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
}

.profile-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-main-card,
.profile-visual-card {
    min-height: 100%;
}

.profile-highlight-grid {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-highlight-grid div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(199, 111, 74, 0.08);
    border: 1px solid rgba(199, 111, 74, 0.12);
}

.profile-highlight-grid strong {
    display: block;
    margin-bottom: 6px;
    color: var(--primary-strong);
}

.profile-highlight-grid span {
    color: var(--muted);
    line-height: 1.68;
}

.profile-visual-card {
    display: grid;
    gap: 16px;
}

.profile-image {
    min-height: 330px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.14)),
        url('https://theme.co.id/webdesa/wp-content/uploads/2024/11/desa3-1024x576.webp') center/cover;
}

.profile-caption {
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(233, 211, 187, 0.45));
    border: 1px solid rgba(199, 111, 74, 0.12);
}

.profile-caption strong {
    display: block;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: 1.14rem;
    color: var(--primary-strong);
}

.profile-caption span {
    display: block;
    margin-top: 6px;
    color: var(--gold);
    font-weight: 700;
}

.profile-caption p {
    margin: 12px 0 0;
}

.profile-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.profile-list-item {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid rgba(199, 111, 74, 0.12);
}

.profile-list-item strong {
    display: block;
    line-height: 1.7;
    color: var(--primary-strong);
}

.profile-info-grid {
    margin-top: 18px;
}

.profile-page {
    padding-top: 26px;
}

.profile-showcase-card {
    position: relative;
    margin-bottom: 24px;
}

.profile-showcase-image {
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(90deg, rgba(14, 23, 18, 0.82) 0%, rgba(14, 23, 18, 0.54) 40%, rgba(14, 23, 18, 0.14) 100%),
        url('https://theme.co.id/webdesa/wp-content/uploads/2024/11/desa3-1024x576.webp') center/cover;
    box-shadow: var(--shadow);
}

.profile-showcase-overlay {
    max-width: 640px;
    padding: 34px;
    color: #fff;
}

.profile-showcase-overlay h2 {
    margin: 10px 0 12px;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(2.6rem, 4.2vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: 0;
    color: #fff;
}

.profile-showcase-overlay p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.82;
}

.profile-showcase-chip {
    position: absolute;
    right: 28px;
    bottom: 24px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 250, 242, 0.94);
    border: 1px solid rgba(199, 111, 74, 0.18);
    box-shadow: 0 18px 40px rgba(21, 14, 10, 0.15);
}

.profile-showcase-chip strong {
    display: block;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: 1.05rem;
    color: var(--primary-strong);
}

.profile-showcase-chip span {
    display: block;
    margin-top: 4px;
    color: var(--gold);
    font-weight: 700;
}

.profile-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
    gap: 18px;
    margin-bottom: 18px;
}

.profile-page .prose-card {
    padding: 28px;
    border-radius: 22px;
}

.profile-page .prose-card h2 {
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(2rem, 2.7vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
    margin-top: 10px;
}

.profile-page .prose-card p,
.profile-page .profile-highlight-grid span,
.profile-page .profile-info-grid span {
    font-size: 1.08rem;
    line-height: 1.88;
}

.profile-lead {
    font-size: 1.18rem !important;
    line-height: 1.9 !important;
    color: var(--primary-strong) !important;
}

.profile-highlight-grid {
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-highlight-grid div {
    padding: 20px;
}

.profile-quote-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(233, 211, 187, 0.54));
}

.profile-quote-card blockquote {
    margin: 18px 0 0;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: 1.42rem;
    line-height: 1.62;
    letter-spacing: 0;
    color: var(--primary-strong);
}

.profile-quote-meta {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(199, 111, 74, 0.16);
}

.profile-quote-meta strong {
    display: block;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-strong);
}

.profile-quote-meta span {
    display: block;
    margin-top: 6px;
    color: var(--gold);
    font-weight: 700;
}

.profile-content-grid {
    gap: 20px;
    margin-bottom: 20px;
}

.profile-section-card {
    min-height: 100%;
}

.profile-list {
    margin-top: 22px;
    gap: 16px;
}

.profile-list-item {
    padding: 20px;
}

.profile-list-item strong {
    font-size: 1.04rem;
    line-height: 1.8;
}

.empty-state {
    padding: 30px;
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid rgba(199, 111, 74, 0.12);
}

.site-footer {
    margin-top: 26px;
    padding: 58px 0 42px;
    color: rgba(255, 255, 255, 0.84);
    background: linear-gradient(180deg, #2d5a3d, #1d3e2a);
}

.site-footer .container {
    width: min(calc(100% - 16px), 1480px);
}

.footer-brand-image {
    display: block;
    width: 100%;
    text-align: left;
}

.footer-logo {
    width: 190px;
    height: auto;
    display: block;
    margin-left: 0;
}

.footer-grid-main {
    grid-template-columns: 1.35fr 1.05fr 1.05fr 1.1fr;
    align-items: start;
    gap: 12px;
}

.footer-brand-col p {
    max-width: 100%;
    font-size: 1.22rem;
    line-height: 1.72;
    margin: 0;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
    font-size: 1.14rem;
}

.footer-grid h4 {
    margin: 0 0 10px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 1.32rem;
}

.footer-links-list,
.important-numbers {
    display: grid;
    gap: 8px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.22rem;
    line-height: 1.6;
}

.important-numbers span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.14rem;
    margin-bottom: 2px;
}

.important-numbers strong {
    color: #fff;
    font-size: 1.26rem;
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 1.16rem;
}

.site-footer .footer-grid p,
.site-footer .footer-grid a {
    font-size: 1.18rem;
    line-height: 1.62;
}

@media (max-width: 1100px) {
    .profile-intro-grid {
        grid-template-columns: 1fr;
    }

    .profile-stats-grid,
    .profile-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-showcase-chip {
        position: static;
        margin-top: 14px;
    }
}

@media (max-width: 1100px) {
    .showcase-grid,
    .leader-grid,
    .footer-grid-main,
    .news-grid,
    .service-grid,
    .gallery-grid,
    .potency-grid,
    .potency-grid.full {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-strip,
    .home-shortcuts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .umkm-toolbar {
        grid-template-columns: 1fr;
    }

    .section-stats-overlap {
        margin-top: 0;
    }

    .container-showcase {
        width: calc(100% - 16px);
    }

    .showcase-grid {
        grid-template-columns: minmax(0, 1.7fr) minmax(300px, 1fr);
    }

    .kopdes-layout,
    .kopdes-content-grid,
    .kopdes-list-wide,
    .profile-grid,
    .profile-content-grid {
        grid-template-columns: 1fr;
    }

    .profile-stats-grid,
    .profile-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slideshow,
    .welcome-card,
    .hero-slide-inner {
        min-height: 470px;
    }

    .main-nav {
        display: none;
    }
}

@media (max-width: 760px) {
    .profile-intro-grid,
    .profile-stats-grid,
    .profile-highlight-grid {
        grid-template-columns: 1fr;
    }

    .profile-showcase-image {
        min-height: 340px;
    }

    .profile-showcase-overlay {
        padding: 20px;
    }

    .profile-showcase-overlay h2 {
        font-size: 2.45rem;
    }

    .profile-page .prose-card {
        padding: 20px;
    }

    .profile-page .prose-card h2 {
        font-size: 2rem;
    }

    .profile-quote-card blockquote {
        font-size: 1.18rem;
    }

    .showcase-grid,
    .leader-grid,
    .footer-grid-main,
    .news-grid,
    .service-grid,
    .gallery-grid,
    .potency-grid,
    .potency-grid.full,
    .info-grid,
    .infographic-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
    }

    .umkm-overview {
        padding: 24px 22px;
    }

    .umkm-pagination-wrap {
        justify-content: center;
    }

    .umkm-pagination {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .umkm-card-footer {
        grid-template-columns: 1fr;
        display: grid;
    }

    .potency-grid.umkm-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .umkm-card {
        width: 100%;
        max-width: none;
    }

    main.section-block .potency-card.umkm-card {
        flex: initial;
        width: 100%;
        max-width: none;
    }

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

    .stats-strip,
    .home-shortcuts {
        grid-template-columns: 1fr;
    }

    .hero-slide-actions {
        grid-template-columns: 1fr;
        display: grid;
    }

    .section-stats-overlap {
        margin-top: 0;
    }

    .kopdes-layout,
    .kopdes-content-grid,
    .kopdes-list-wide,
    .profile-grid,
    .profile-content-grid,
    .profile-stats-grid,
    .profile-highlight-grid {
        grid-template-columns: 1fr;
    }

    .nav-row {
        min-height: 68px;
    }

    .brand-logo {
        width: 150px;
    }

    .container-header {
        width: 100%;
        padding-inline: 8px;
    }

    .hero-slideshow {
        min-height: 520px;
        border-radius: 22px;
    }

    .container-showcase {
        width: calc(100% - 8px);
    }

    .hero-slide-inner {
        min-height: 520px;
        padding-top: 30px;
        padding-bottom: 140px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-slide h1 {
        font-size: 2.3rem;
        line-height: 1.05;
    }

    .hero-slide p {
        font-size: 0.94rem;
    }

    .hero-search-wrap {
        margin-top: -108px;
        padding-inline: 12px;
    }

    .hero-floating-search-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-floating-search button {
        width: 100%;
        min-width: 0;
    }

    .welcome-card {
        padding: 18px;
        min-height: auto;
    }

    .welcome-card-visual {
        min-height: auto;
    }

    .welcome-image,
    .glass-panel {
        position: static;
        width: 100%;
    }

    .welcome-image {
        min-height: 250px;
        margin-bottom: 16px;
    }
}

/* Branding colors only: do not alter layout, spacing, sizing, or structure. */
body {
    background-color: var(--background) !important;
    color: var(--text) !important;
}

a,
.main-nav > a:hover,
.nav-dropdown-label:hover,
.home-compact-section-head a,
.footer-map-button,
.page-link {
    color: var(--primary) !important;
}

.site-header,
.nav-dropdown-menu,
.mobile-menu-panel,
.home-compact-about,
.home-compact-panel,
.home-compact-card,
.product-card,
.potential-card,
.gallery-card,
.news-card,
.announcement-card,
.service-card,
.modal,
input,
select,
textarea,
table {
    border-color: var(--border) !important;
}

.hero-button,
.home-reference-button,
.page-hero-button,
.button,
.btn,
button[type="submit"],
.footer-map-button,
.pagination .active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

.badge,
.tag,
.chip,
.category-badge {
    border-color: var(--border) !important;
    color: var(--primary) !important;
}

.site-footer {
    background-color: var(--primary) !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary) !important;
}

.flash-success,
.alert-success {
    color: var(--success) !important;
}

.flash-error,
.alert-error,
.alert-danger {
    color: var(--danger) !important;
}


@media (max-width: 720px) {
    main.section-block .potency-grid.umkm-grid,
    .potency-grid.umkm-grid {
        grid-template-columns: 1fr;
    }
}

body.umkm-reference-page {
    background: #ffffff;
    color: #0f1720;
}

.umkm-reference-page .site-header {
    position: static;
    background: #ffffff;
    border-bottom: 1px solid #edf1ee;
    backdrop-filter: none;
}

.umkm-reference-page .container-header {
    width: min(calc(100% - 40px), 1380px);
}

.umkm-reference-page .nav-row {
    min-height: 84px;
    gap: 20px;
}

.umkm-reference-page .brand-mark {
    gap: 14px;
    text-decoration: none;
}

.umkm-reference-page .brand-logo {
    width: 220px;
}

.umkm-reference-page .main-nav {
    gap: 18px;
    margin: 0 18px;
    font-size: 1rem;
}

.umkm-reference-page .main-nav > a,
.umkm-reference-page .nav-dropdown-label {
    color: #1f2933;
    font-weight: 600;
    background: transparent;
    border-radius: 0;
    padding: 12px 6px;
    border-bottom: 2px solid transparent;
}

.umkm-reference-page .main-nav > a.active,
.umkm-reference-page .main-nav > a:hover,
.umkm-reference-page .nav-dropdown:hover .nav-dropdown-label,
.umkm-reference-page .nav-dropdown.is-open .nav-dropdown-label {
    color: #123f26;
    background: transparent;
    border-bottom-color: #2f8a4c;
}

.umkm-reference-page .nav-cta {
    display: none;
}

.umkm-reference-page .header-link {
    display: none;
}

.header-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    background: #123f26;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.header-wa-link svg {
    width: 19px;
    height: 19px;
}

.umkm-reference-main {
    padding: 28px 0 42px;
}

.umkm-reference-container {
    width: min(calc(100% - 40px), 1380px);
    margin: 0 auto;
}

.umkm-reference-hero {
    position: relative;
    min-height: 202px;
    padding: 38px 34px;
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5, 44, 20, 0.88), rgba(5, 44, 20, 0.52)),
        url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.umkm-reference-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    color: #fff;
}

.umkm-reference-eyebrow,
.umkm-reference-section-label {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.umkm-reference-eyebrow {
    color: #79d58f;
    margin-bottom: 14px;
}

.umkm-reference-hero h1 {
    margin: 0;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.35rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.umkm-reference-hero p {
    margin: 14px 0 0;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
    line-height: 1.6;
}

.umkm-reference-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    margin: 38px 0 28px;
}

.umkm-reference-section-label {
    color: #2f8a4c;
    margin-bottom: 12px;
}

.umkm-reference-head h2 {
    margin: 0;
    color: #101828;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.95rem, 3vw, 2.45rem);
    line-height: 1.12;
    letter-spacing: 0;
}

.umkm-reference-head p {
    margin: 12px 0 0;
    color: #4b5563;
    font-size: 1.04rem;
    line-height: 1.65;
}

.umkm-reference-head-side {
    min-width: 320px;
    max-width: 460px;
    text-align: right;
}

.umkm-reference-page-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: #e9f7ec;
    color: #246b39;
    font-size: 0.96rem;
    font-weight: 700;
}

.umkm-reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
    gap: 22px;
    justify-content: center;
    align-items: stretch;
}

.umkm-reference-card {
    width: 100%;
    max-width: 280px;
    min-height: 430px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e9eeea;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

.umkm-reference-card-image {
    display: block;
    width: 100%;
    height: 170px;
    min-height: 170px;
    flex: 0 0 170px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.umkm-reference-card-body {
    padding: 18px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.umkm-reference-card-category {
    display: inline-block;
    color: #2d7a43;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.umkm-reference-card h3 {
    margin: 10px 0 0;
    color: #101828;
    font-family: 'Manrope', sans-serif;
    font-size: 1.02rem;
    line-height: 1.36;
}

.umkm-reference-card p {
    margin: 10px 0 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.58;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.umkm-reference-card-price {
    display: block;
    margin-top: auto;
    padding-top: 14px;
    color: #12492b;
    font-family: 'Sora', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
}

.umkm-reference-card-button {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    background: #e9f7ec;
    color: #246b39;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.umkm-reference-card-button svg {
    width: 18px;
    height: 18px;
}

.umkm-reference-empty {
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    text-align: center;
    background: #fff;
}

.umkm-reference-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.umkm-reference-page-item {
    min-width: 42px;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #dfe6e0;
    color: #1f2933;
    font-weight: 600;
    text-decoration: none;
}

.umkm-reference-page-item.is-active {
    background: #1d7c3a;
    border-color: #1d7c3a;
    color: #fff;
}

.umkm-reference-page-item.is-ellipsis,
.umkm-reference-page-item.is-disabled {
    color: #98a2b3;
    background: #fff;
}

.umkm-reference-footer {
    margin-top: 28px;
    padding: 20px 0;
    background: #123f26;
    color: rgba(255, 255, 255, 0.95);
}

.umkm-reference-footer-inner {
    width: min(calc(100% - 40px), 1380px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.96rem;
}

.umkm-reference-footer-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.umkm-reference-footer-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
}

@media (max-width: 1200px) {
    .umkm-reference-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-items: center;
    }
}

@media (max-width: 1024px) {
    .umkm-reference-page .main-nav {
        gap: 10px;
        font-size: 0.92rem;
    }

    .umkm-reference-page .brand-logo {
        width: 190px;
    }

    .umkm-reference-head {
        grid-template-columns: 1fr;
    }

    .umkm-reference-head-side {
        max-width: none;
        min-width: 0;
        text-align: left;
    }

    .umkm-reference-grid {
        grid-template-columns: repeat(2, minmax(220px, 280px));
        justify-content: center;
        justify-items: center;
    }
}

@media (max-width: 760px) {
    .umkm-reference-page .main-nav {
        display: none;
    }

    .umkm-reference-page .container-header,
    .umkm-reference-container,
    .umkm-reference-footer-inner {
        width: calc(100% - 24px);
    }

    .umkm-reference-main {
        padding-top: 18px;
    }

    .umkm-reference-hero {
        min-height: 180px;
        padding: 26px 20px;
    }

    .umkm-reference-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 18px;
        justify-content: center;
        justify-items: stretch;
    }

    .umkm-reference-card {
        max-width: none;
        min-height: 400px;
    }

    .umkm-reference-card-image {
        height: 150px;
        min-height: 150px;
        flex-basis: 150px;
    }

    .umkm-reference-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .umkm-reference-footer-links {
        gap: 18px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .umkm-reference-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .umkm-reference-card {
        max-width: 100%;
        min-height: auto;
    }

    .umkm-reference-card-image {
        height: 150px;
        min-height: 150px;
        flex-basis: 150px;
    }

    .umkm-reference-card-body {
        padding: 16px;
    }

    .umkm-reference-card h3 {
        font-size: 1rem;
    }

    .umkm-reference-card p {
        font-size: 0.88rem;
        -webkit-line-clamp: 3;
    }
}

/* Unified header style */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #edf1ee;
    backdrop-filter: none;
}

.site-header.scrolled {
    box-shadow: 0 8px 24px rgba(15, 23, 32, 0.08);
}

.nav-row {
    min-height: 84px;
    gap: 20px;
}

.brand-logo {
    width: 220px;
}

.main-nav {
    gap: 18px;
    margin: 0 18px;
    font-size: 1rem;
}

.main-nav > a,
.nav-dropdown-label,
.nav-cta {
    color: #1f2933 !important;
    min-height: 44px;
    padding: 12px 6px;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    font-weight: 600;
}

.main-nav > a.active,
.main-nav > a:hover,
.nav-dropdown:hover .nav-dropdown-label,
.nav-dropdown.is-open .nav-dropdown-label,
.nav-cta.active,
.nav-cta:hover {
    color: #123f26 !important;
    background: transparent;
    border-bottom-color: #2f8a4c;
}

.header-link,
.umkm-reference-page .header-link {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #d8e3da;
    background: #ffffff;
    color: #123f26;
}

.header-wa-link {
    display: none;
}

@media (max-width: 1024px) {
    .brand-logo {
        width: 190px;
    }

    .main-nav,
    .umkm-reference-page .main-nav {
        gap: 10px;
        font-size: 0.92rem;
    }
}

@media (max-width: 760px) {
    .nav-row {
        min-height: 72px;
        gap: 12px;
    }

    .brand-logo {
        width: 150px;
    }
}

body.home-reference-page {
    background: #fbfcfb;
}

.home-reference-main {
    padding: 26px 0 40px;
}

.home-reference-container {
    width: min(calc(100% - 20px), 1480px);
    margin: 0 auto;
}

.home-reference-main {
    --home-left-col: minmax(0, 2.28fr);
    --home-right-col: minmax(410px, 1fr);
}

.home-reference-top {
    display: grid;
    grid-template-columns: var(--home-left-col) var(--home-right-col);
    gap: 16px;
    align-items: stretch;
}

.home-reference-hero {
    position: relative;
    min-height: 424px;
    border-radius: 20px;
    overflow: hidden;
    background: #0d1811;
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.08);
}

.home-reference-slide,
.home-reference-hero-bg,
.home-reference-hero-overlay {
    position: absolute;
    inset: 0;
}

/* Homepage hero content is fully controlled by the CMS. */
.home-reference-hero-content {
    width: min(720px, 84%);
    align-items: flex-start;
    text-align: left;
}

.home-reference-hero-content.is-tengah {
    margin-inline: auto;
    align-items: center;
    text-align: center;
}

.home-reference-hero-content.is-kanan {
    margin-left: auto;
    align-items: flex-end;
    text-align: right;
}

.home-reference-hero-content p {
    max-width: 620px;
    margin: 12px 0 20px;
    color: rgba(255,255,255,.88);
    font-size: clamp(14px, 1.6vw, 18px);
    line-height: 1.65;
}

.home-reference-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 640px) {
    .home-reference-hero-content,
    .home-reference-hero-content.is-kanan {
        width: 90%;
        margin-inline: auto;
        align-items: center;
        text-align: center;
    }

    .home-reference-hero-actions {
        justify-content: center;
    }
}

.home-reference-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.home-reference-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.home-reference-hero-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-reference-hero-overlay {
    background: linear-gradient(90deg, rgba(7, 18, 12, 0.88) 0%, rgba(7, 18, 12, 0.7) 38%, rgba(7, 18, 12, 0.28) 78%, rgba(7, 18, 12, 0.12) 100%);
}

.home-reference-hero-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    padding: 52px 32px 30px;
    color: #fff;
}

.home-reference-eyebrow,
.home-reference-panel-label {
    display: inline-block;
    color: #d2f0d8;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-reference-hero h1 {
    margin: 12px 0 0;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(3rem, 5vw, 4.15rem);
    line-height: 1.03;
    letter-spacing: 0;
}

.home-reference-hero p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
    line-height: 1.7;
}

.home-reference-chips,
.home-reference-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-reference-chips {
    margin-top: 18px;
}

.home-reference-chips span {
    min-height: 42px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.94rem;
    font-weight: 600;
}

.home-reference-actions {
    margin-top: 22px;
}

.home-reference-action {
    min-height: 50px;
    padding: 0 24px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.home-reference-action.is-primary {
    background: #1f8a46;
    color: #fff;
}

.home-reference-action.is-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.home-reference-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.home-reference-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.home-reference-dots button.is-active {
    background: #21a95b;
}

.home-reference-about,
.home-reference-profile-panel,
.home-reference-announcement-panel {
    background: #fff;
    border: 1px solid #edf1ee;
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.05);
}

.home-reference-about {
    padding: 28px 24px;
    min-height: 424px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-reference-panel-label {
    color: #2d8f49;
}

.home-reference-about h2 {
    margin: 14px 0 0;
    color: #0f1720;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.05rem, 3vw, 3rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.home-reference-about p {
    margin: 18px 0 0;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.72;
}

.home-reference-highlight {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f7faf8;
    border: 1px solid #eef2ef;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-reference-highlight:hover {
    border-color: rgba(35, 119, 59, 0.28);
    box-shadow: 0 12px 28px rgba(17, 75, 43, 0.1);
    transform: translateY(-1px);
}

.home-reference-highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #23773b;
}

.home-reference-highlight-icon svg,
.home-reference-info-icon svg,
.home-reference-feature-icon svg {
    width: 22px;
    height: 22px;
}

.home-reference-highlight strong {
    display: block;
    color: #111827;
    font-family: 'Manrope', sans-serif;
    font-size: 1.02rem;
}

.home-reference-highlight p {
    margin: 4px 0 0;
    font-size: 0.96rem;
}

.home-reference-highlight-cta {
    display: inline-flex;
    margin-top: 8px;
    color: #23773b;
    font-size: 0.9rem;
    font-weight: 800;
}

.home-reference-mid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: var(--home-left-col) var(--home-right-col);
    gap: 16px;
    align-items: stretch;
}

.home-reference-profile-panel,
.home-reference-announcement-panel {
    padding: 18px;
}

.home-reference-profile-panel {
    min-height: 338px;
}

.home-reference-announcement-panel {
    min-height: 338px;
}

.home-reference-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.home-reference-section-head h3 {
    margin: 0;
    color: #111827;
    font-family: 'Manrope', sans-serif;
    font-size: 1.08rem;
}

.home-reference-section-head a {
    color: #2b7f41;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
}

.home-reference-profile-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-reference-info-card {
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #edf1ee;
    box-shadow: 0 10px 22px rgba(16, 24, 40, 0.04);
}

.home-reference-info-thumb {
    min-height: 138px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-reference-info-icon {
    width: 48px;
    height: 48px;
    margin: -18px 0 0 16px;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    background: #f3fbf5;
    border: 1px solid #d8eadc;
    display: grid;
    place-items: center;
    color: #2b7f41;
}

.home-reference-info-body {
    padding: 10px 16px 18px;
}

.home-reference-info-body h4 {
    margin: 8px 0 0;
    color: #111827;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
}

.home-reference-info-body p {
    margin: 8px 0 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.68;
}

.home-reference-info-body a {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2b7f41;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.home-reference-info-body a::after {
    content: '\2192';
}

.home-reference-announcement-list {
    display: grid;
}

.home-reference-announcement-item {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid #eef2ef;
}

.home-reference-announcement-item:first-child {
    border-top: 0;
    padding-top: 8px;
}

.home-reference-announcement-dot {
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-radius: 50%;
    background: #1f8a46;
}

.home-reference-announcement-meta {
    display: flex;
    gap: 14px;
    color: #6b7280;
    font-size: 0.84rem;
}

.home-reference-announcement-item h4 {
    margin: 8px 0 0;
    color: #111827;
    font-family: 'Manrope', sans-serif;
    font-size: 1.02rem;
    line-height: 1.44;
}

.home-reference-announcement-item p {
    margin: 6px 0 0;
    color: #4b5563;
    font-size: 0.94rem;
    line-height: 1.62;
}

.home-reference-features {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-reference-feature-card {
    padding: 18px 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #edf1ee;
    box-shadow: 0 12px 26px rgba(16, 24, 40, 0.04);
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: start;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-reference-feature-card:hover {
    border-color: rgba(43, 127, 65, 0.3);
    box-shadow: 0 14px 32px rgba(16, 24, 40, 0.08);
    transform: translateY(-1px);
}

.home-reference-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #2b7f41;
}

.home-reference-feature-card h4 {
    margin: 2px 0 0;
    color: #111827;
    font-family: 'Manrope', sans-serif;
    font-size: 1.02rem;
}

.home-reference-feature-card p {
    margin: 6px 0 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.62;
}

.home-reference-service-cta {
    display: inline-flex;
    margin-top: 10px;
    color: #2b7f41;
    font-size: 0.9rem;
    font-weight: 800;
}

@media (max-width: 1200px) {
    .home-reference-top,
    .home-reference-mid {
        grid-template-columns: 1fr;
    }

    .home-reference-profile-grid,
    .home-reference-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .home-reference-container {
        width: calc(100% - 20px);
    }

    .home-reference-main {
        padding: 18px 0 28px;
    }

    .home-reference-hero {
        min-height: 420px;
    }

    .home-reference-hero-content {
        padding: 28px 18px 24px;
    }

    .home-reference-hero h1 {
        font-size: 2.35rem;
    }

    .home-reference-about,
    .home-reference-profile-panel,
    .home-reference-announcement-panel {
        padding: 16px;
    }

    .home-reference-profile-grid,
    .home-reference-features {
        grid-template-columns: 1fr;
    }
}

/* Public design system refresh */
:root {
    --bg: #f7faf8;
    --paper: #ffffff;
    --paper-soft: #f3f7f4;
    --paper-accent: #e9f7ec;
    --text: #101828;
    --muted: #667085;
    --primary: #1f8a46;
    --primary-strong: #123f26;
    --gold: #2f8a4c;
    --line: #e6ece8;
    --shadow: 0 14px 34px rgba(16, 24, 40, 0.07);
    --shadow-hover: 0 24px 52px rgba(16, 24, 40, 0.14);
    --radius-xl: 20px;
    --radius-lg: 16px;
    --radius-md: 12px;
}

body {
    background: var(--bg);
    color: var(--text);
}

.container-showcase,
.umkm-reference-container,
.umkm-reference-page .container-header {
    width: min(calc(100% - 40px), 1380px);
    max-width: 1380px;
}

.container-showcase.page-hero-inner {
    width: min(calc(100% - 40px), 1380px);
    max-width: 1380px;
}

.section-block,
.article-shell {
    padding: clamp(60px, 7vw, 92px) 0;
}

.page-hero {
    padding: 28px 0 0;
}

.page-hero-inner {
    position: relative;
    min-height: 260px;
    padding: clamp(34px, 5vw, 58px);
    overflow: hidden;
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(5, 44, 20, 0.9), rgba(5, 44, 20, 0.58)),
        var(--page-hero-image);
    background-position: center;
    background-size: cover;
    color: #fff;
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.12);
}

.page-hero-inner .eyebrow {
    color: #9be6ad;
}

.page-hero-inner h1 {
    margin: 12px 0 0;
    max-width: 780px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.35rem, 5vw, 4.15rem);
    line-height: 1.03;
    letter-spacing: 0;
    color: #fff;
}

.page-hero-inner p {
    max-width: 680px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
    line-height: 1.68;
}

.section-head,
.ds-section-head,
.umkm-reference-head {
    margin-bottom: 30px;
}

.section-head h2,
.ds-section-head h2,
.umkm-reference-head h2 {
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.95rem, 3vw, 2.65rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.section-head p,
.ds-section-head p,
.umkm-reference-head p {
    color: var(--muted);
}

.eyebrow,
.umkm-reference-section-label {
    color: var(--primary);
    letter-spacing: 0;
}

.ds-grid,
.umkm-reference-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.ds-card,
.umkm-reference-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ds-card:hover,
.umkm-reference-card:hover {
    transform: scale(1.03);
    border-color: rgba(31, 138, 70, 0.24);
    box-shadow: var(--shadow-hover);
}

.ds-card-media,
.umkm-reference-card-image {
    display: block;
    width: 100%;
    min-height: 220px;
    aspect-ratio: 16 / 10;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform-origin: center;
    transition: transform 0.32s ease;
}

.ds-card:hover .ds-card-media,
.umkm-reference-card:hover .umkm-reference-card-image {
    transform: scale(1.06);
}

.ds-card-body,
.umkm-reference-card-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 20px 20px;
    background: #fff;
}

.ds-card .ds-badge,
.umkm-reference-card-category {
    display: inline-flex;
    width: fit-content;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--paper-accent);
    color: #246b39;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.ds-card h3,
.umkm-reference-card h3 {
    margin: 12px 0 0;
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    font-size: 1.08rem;
    line-height: 1.38;
    letter-spacing: 0;
}

.ds-card p,
.umkm-reference-card p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.68;
}

.ds-card-action,
.ds-card-link,
.umkm-reference-card-button {
    margin-top: auto;
}

.ds-card-action {
    min-height: 42px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--primary-strong);
    font-weight: 800;
}

.ds-card-link,
.umkm-reference-card-button {
    display: inline-flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    border-radius: 12px;
    background: var(--paper-accent);
    color: #246b39;
    font-size: 0.94rem;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ds-card-link:hover,
.umkm-reference-card-button:hover {
    transform: translateY(-1px);
    background: var(--primary);
    color: #fff;
}

.umkm-reference-main {
    padding: 28px 0 72px;
}

.umkm-reference-hero {
    min-height: 260px;
    padding: clamp(34px, 5vw, 58px);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.12);
}

.umkm-reference-hero h1,
.umkm-reference-eyebrow,
.umkm-reference-section-label,
.umkm-reference-card-category,
.umkm-reference-head h2,
.profile-showcase-overlay h2,
.profile-page .prose-card h2 {
    letter-spacing: 0;
}

.news-body.ds-card-body,
.potency-card .ds-card-body,
.gallery-overlay.ds-card-body {
    padding: 18px 20px 20px;
}

.umkm-reference-grid {
    gap: 24px;
}

.umkm-reference-card-image {
    min-height: 220px;
}

.umkm-reference-card-price {
    color: var(--primary-strong);
}

.umkm-reference-page-badge {
    background: var(--paper-accent);
    color: #246b39;
}

.service-card.ds-card,
.list-card.ds-card {
    padding: 0;
}

.ds-card-media-icon {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(31, 138, 70, 0.1), rgba(18, 63, 38, 0.18)),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80') center/cover;
}

.ds-card-media-icon .service-icon {
    width: 68px;
    height: 68px;
    margin: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary);
    font-size: 1.5rem;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12);
}

.gallery-card.ds-card {
    min-height: 0;
    background-image: none;
}

.gallery-card .gallery-overlay.ds-card-body {
    position: relative;
    inset: auto;
    color: var(--text);
    background: #fff;
}

.gallery-card .gallery-overlay h3 {
    color: var(--text);
}

.ds-card-flat .ds-card-body {
    min-height: 100%;
}

.prose-card,
.article-card,
.list-card,
.stat-panel-home,
.info-grid div,
.kopdes-list-item,
.profile-list-item,
.empty-state {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
}

.stat-panel-home {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.stat-panel-home:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.prose-card h2,
.article-card h1,
.list-card h3 {
    color: var(--text);
}

.info-grid strong,
.profile-list-item strong,
.kopdes-list-item strong {
    color: var(--primary-strong);
}

.article-image,
.kopdes-media,
.profile-showcase-image {
    border-radius: 16px;
}

.site-footer {
    background: linear-gradient(180deg, #123f26, #0b2e1a);
}

@media (max-width: 1024px) {
    .ds-grid,
    .umkm-reference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .container-showcase,
    .umkm-reference-container,
    .umkm-reference-page .container-header {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
    }

    .container-showcase.page-hero-inner {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
    }

    .section-block,
    .article-shell {
        padding: 56px 0;
    }

    .page-hero {
        padding-top: 18px;
    }

    .page-hero-inner,
    .umkm-reference-hero {
        min-height: 220px;
        padding: 28px 20px;
    }

    .page-hero-inner h1,
    .umkm-reference-hero h1 {
        font-size: 2.25rem;
    }

    .section-head,
    .ds-section-head,
    .umkm-reference-head {
        display: block;
    }

    .section-head h2,
    .ds-section-head h2,
    .umkm-reference-head h2 {
        font-size: 1.75rem;
        line-height: 1.18;
    }

    .page-hero-inner h1,
    .page-hero-inner p,
    .section-head h2,
    .ds-card h3,
    .ds-card p,
    .umkm-reference-card h3,
    .umkm-reference-card p {
        overflow-wrap: anywhere;
    }

    .ds-grid,
    .umkm-reference-grid {
        grid-template-columns: 1fr;
    }

    .umkm-reference-pagination {
        max-width: 100%;
        flex-wrap: wrap;
    }

    .umkm-reference-page-item {
        min-width: 38px;
        height: 38px;
        padding: 0 12px;
    }

    .ds-card-media,
    .umkm-reference-card-image {
        min-height: 190px;
    }

}

/* Compact and consistent product catalog cards */
.umkm-reference-page .umkm-reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
    gap: 22px;
    justify-content: center;
    align-items: stretch;
}

.umkm-reference-page .umkm-reference-card {
    width: 100%;
    max-width: 280px;
    min-height: 430px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.umkm-reference-page .umkm-reference-card-image {
    width: 100%;
    height: 170px;
    min-height: 170px;
    flex: 0 0 170px;
    aspect-ratio: auto;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

.umkm-reference-page .umkm-reference-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.umkm-reference-page .umkm-reference-card p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.umkm-reference-page .umkm-reference-card-price {
    margin-top: auto;
    padding-top: 14px;
}

.umkm-reference-page .umkm-reference-card-button {
    min-height: 44px;
    margin-top: 14px;
}

@media (max-width: 768px) {
    .umkm-reference-page .umkm-reference-grid {
        grid-template-columns: repeat(2, minmax(220px, 320px));
        gap: 18px;
        justify-content: center;
        justify-items: center;
    }

    .umkm-reference-page .umkm-reference-card {
        max-width: 320px;
        min-height: 400px;
    }

    .umkm-reference-page .umkm-reference-card-image {
        height: 150px;
        min-height: 150px;
        flex-basis: 150px;
    }
}

@media (max-width: 480px) {
    .umkm-reference-page .umkm-reference-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        justify-content: stretch;
        align-items: stretch;
        overflow: visible;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        scroll-snap-type: none;
    }

    .umkm-reference-page .umkm-reference-card {
        width: 100%;
        max-width: none;
        min-height: 300px;
        height: 100%;
        flex: initial;
        scroll-snap-align: none;
        border-radius: 14px;
    }

    .umkm-reference-page .umkm-reference-card-image {
        height: 105px;
        min-height: 105px;
        flex-basis: 105px;
    }

    .umkm-reference-page .umkm-reference-card-body {
        padding: 10px;
    }

    .umkm-reference-page .umkm-reference-card-category {
        min-height: 20px;
        padding: 0 7px;
        margin-bottom: 8px;
        font-size: 0.58rem;
    }

    .umkm-reference-page .umkm-reference-card h3 {
        margin: 0 0 6px;
        font-size: 0.86rem;
        line-height: 1.25;
    }

    .umkm-reference-page .umkm-reference-card p {
        margin: 0 0 8px;
        font-size: 0.72rem;
        line-height: 1.4;
        -webkit-line-clamp: 2;
    }

    .umkm-reference-page .umkm-reference-card-price {
        padding-top: 0;
        font-size: 0.86rem;
    }

    .umkm-reference-page .umkm-reference-card-button {
        min-height: 34px;
        margin-top: 8px;
        border-radius: 10px;
        padding: 0 8px;
        font-size: 0.68rem;
        gap: 5px;
    }

    .umkm-reference-page .umkm-reference-card-button svg {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 360px) {
    .umkm-reference-page .umkm-reference-grid {
        gap: 10px;
    }

    .umkm-reference-page .umkm-reference-card-image {
        height: 95px;
        min-height: 95px;
        flex-basis: 95px;
    }

    .umkm-reference-page .umkm-reference-card-body {
        padding: 9px;
    }

    .umkm-reference-page .umkm-reference-card h3 {
        font-size: 0.8rem;
    }

    .umkm-reference-page .umkm-reference-card p {
        font-size: 0.68rem;
    }

    .umkm-reference-page .umkm-reference-card-button {
        min-height: 32px;
        font-size: 0.64rem;
    }
}

/* Catalog/card lists must start from the left, not float in the center. */
.news-grid,
.gallery-grid,
.potency-grid,
.potency-grid.full,
.service-grid,
.ds-grid {
    justify-content: start;
    justify-items: stretch;
}

.potency-grid.umkm-grid,
main.section-block .potency-grid.umkm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    justify-content: start;
    justify-items: stretch;
    align-items: stretch;
}

.umkm-grid--centered {
    justify-content: flex-start;
}

.umkm-card,
main.section-block .potency-card.umkm-card {
    width: 100%;
    max-width: none;
    flex: initial;
}

.umkm-reference-grid,
.umkm-reference-page .umkm-reference-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: start;
    justify-items: stretch;
    align-items: stretch;
}

.umkm-reference-card,
.umkm-reference-page .umkm-reference-card {
    width: 100%;
    max-width: none;
}

@media (max-width: 1180px) {
    .umkm-reference-grid,
    .umkm-reference-page .umkm-reference-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .potency-grid.umkm-grid,
    main.section-block .potency-grid.umkm-grid,
    .umkm-reference-grid,
    .umkm-reference-page .umkm-reference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .potency-grid.umkm-grid,
    main.section-block .potency-grid.umkm-grid,
    .umkm-reference-grid,
    .umkm-reference-page .umkm-reference-grid {
        grid-template-columns: 1fr;
    }
}

/* Feedback drawer */
.umkm-reference-page .feedback-widget,
.feedback-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: auto;
    z-index: 220;
    display: block;
    width: auto;
    max-width: none;
    pointer-events: none;
}

body.feedback-drawer-open {
    overflow: hidden;
}

.feedback-trigger {
    position: relative;
    z-index: 1;
    min-width: 0;
    height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(18, 63, 38, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    pointer-events: auto;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.feedback-trigger:hover {
    transform: translateY(-2px);
    background: var(--primary-strong);
    box-shadow: 0 18px 42px rgba(18, 63, 38, 0.24);
}

.feedback-trigger-icon {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
}

.feedback-trigger-icon svg {
    width: 20px;
    height: 20px;
}

.feedback-overlay {
    position: fixed;
    inset: 0;
    z-index: 2;
    background: rgba(15, 23, 32, 0.56);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.feedback-widget.is-open .feedback-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.feedback-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    width: min(390px, 100vw);
    height: 100dvh;
    padding: 24px;
    border: 1px solid #e6ece8;
    border-right: 0;
    border-radius: 16px 0 0 16px;
    background: #fff;
    box-shadow: -24px 0 70px rgba(16, 24, 40, 0.24);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(calc(100% + 28px));
    pointer-events: auto;
    transition: transform 0.28s ease, opacity 0.24s ease, visibility 0.24s ease;
}

.feedback-popup[hidden],
.feedback-overlay[hidden] {
    display: none;
}

.feedback-widget.is-open .feedback-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.feedback-popup-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #edf1ee;
}

.feedback-popup-head strong {
    display: block;
    color: var(--primary-strong);
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    line-height: 1.2;
}

.feedback-popup-head p {
    margin: 8px 0 0;
    color: #667085;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feedback-close {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border: 1px solid #e0e8e2;
    border-radius: 12px;
    background: #f7faf8;
    color: var(--primary);
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.feedback-close:hover {
    transform: translateY(-1px);
    border-color: #cfe4d5;
    background: #e9f7ec;
    color: var(--primary-strong);
}

.feedback-close svg {
    width: 20px;
    height: 20px;
}

.feedback-form {
    display: grid;
    gap: 16px;
}

.feedback-form label {
    display: grid;
    gap: 8px;
}

.feedback-form span {
    color: #344054;
    font-size: 0.92rem;
    font-weight: 700;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    border: 1px solid #dfe6e0;
    border-radius: 12px;
    background: #fff;
    color: #101828;
    font: inherit;
    font-size: 0.96rem;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.feedback-form input {
    height: 52px;
    padding: 0 16px;
}

.feedback-form textarea {
    min-height: 132px;
    padding: 14px 16px;
    resize: vertical;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
    color: #98a2b3;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 90, 61, 0.12);
    background: #fbfffc;
}

.feedback-submit {
    width: 100%;
    height: 54px;
    margin-top: 4px;
    border: none;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font: inherit;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(45, 90, 61, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.feedback-submit:hover {
    transform: translateY(-1px);
    background: var(--primary-strong);
    box-shadow: 0 18px 36px rgba(45, 90, 61, 0.26);
}

.feedback-toast {
    position: fixed;
    right: 24px;
    bottom: 84px;
    z-index: 230;
    max-width: 360px;
    padding: 12px 16px;
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.feedback-toast-success {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
}

.feedback-toast-error {
    background: linear-gradient(135deg, #c74f66, #8f3245);
}

@media (max-width: 760px) {
    .feedback-widget {
        right: 16px;
        bottom: 16px;
        left: auto;
        width: auto;
        max-width: none;
    }

    .feedback-trigger {
        height: 44px;
        padding: 0 14px;
        font-size: 0.9rem;
        width: auto;
    }

    .feedback-popup {
        top: 0;
        right: 0;
        bottom: 0;
        width: min(380px, 100vw);
        padding: 22px 18px;
        border-radius: 16px 0 0 16px;
    }

    .feedback-toast {
        right: 16px;
        left: 16px;
        bottom: 72px;
        max-width: none;
    }
}

/* Modern profile page */
.profile-modern-page {
    background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 34%, #f3faf5 100%);
}

.profile-modern {
    padding: 28px 0 76px;
}

.profile-modern-container {
    width: min(calc(100% - 20px), 1480px);
    margin: 0 auto;
}

.profile-modern-hero {
    position: relative;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(17, 75, 43, 0.18);
    isolation: isolate;
}

.profile-modern-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 49, 26, 0.88), rgba(9, 49, 26, 0.58) 48%, rgba(9, 49, 26, 0.22)),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=85') center/cover;
    z-index: -1;
}

.profile-modern-hero-content {
    width: min(720px, 100%);
    min-height: 430px;
    padding: 44px 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.profile-modern-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    font-weight: 700;
}

.profile-modern-breadcrumb a {
    color: #fff;
}

.profile-modern-hero h1 {
    margin: 0;
    max-width: 620px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 1.02;
    letter-spacing: 0;
    text-align: left;
}

.profile-modern-hero p {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
    line-height: 1.75;
    text-align: left;
}

.profile-modern-badges {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.profile-modern-badge {
    min-height: 72px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-modern-badge svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}

.profile-modern-badge strong,
.profile-modern-badge small {
    display: block;
}

.profile-modern-badge strong {
    color: #fff;
    font-size: 0.92rem;
}

.profile-modern-badge small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.76rem;
}

.profile-modern-about,
.profile-modern-vision {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 20px;
    margin-top: 22px;
}

.profile-modern-about-text,
.profile-modern-greeting,
.profile-modern-panel,
.profile-modern-section {
    border: 1px solid rgba(22, 131, 74, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 46px rgba(16, 82, 44, 0.08);
}

.profile-modern-about-text,
.profile-modern-greeting,
.profile-modern-panel {
    padding: 28px;
}

.profile-modern-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    color: #16834a;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.profile-modern h2 {
    margin: 0;
    color: #073d20;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 2.15rem);
    line-height: 1.18;
    letter-spacing: 0;
    text-align: left;
}

.profile-modern h3 {
    margin: 0;
    color: #0b3f24;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0;
}

.profile-modern-about-text p,
.profile-modern-greeting p,
.profile-modern-panel p,
.profile-modern-direction-card p,
.profile-modern-potential-card p,
.profile-modern-contact-card p {
    color: #4f6358;
    line-height: 1.72;
    text-align: left;
}

.profile-modern-about-text p {
    margin: 16px 0 0;
    font-size: 1.02rem;
}

.profile-modern-greeting {
    background:
        radial-gradient(circle at top right, rgba(22, 131, 74, 0.12), transparent 36%),
        #fff;
}

.profile-modern-greeting-head {
    margin-bottom: 18px;
}

.profile-modern-greeting-body {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.profile-modern-greeting-body img {
    width: 112px;
    height: 112px;
    border-radius: 24px;
    object-fit: cover;
    background: #e8f6ee;
    box-shadow: 0 14px 30px rgba(22, 131, 74, 0.14);
}

.profile-modern-greeting-body p {
    margin: 0 0 14px;
    font-size: 0.98rem;
    text-align: left;
}

.profile-modern-greeting-body strong,
.profile-modern-greeting-body span {
    display: block;
    text-align: left;
}

.profile-modern-greeting-body strong {
    color: #073d20;
    font-weight: 800;
}

.profile-modern-greeting-body span {
    margin-top: 3px;
    color: #16834a;
    font-size: 0.9rem;
    font-weight: 700;
}

.profile-modern-section {
    margin-top: 22px;
    padding: 28px;
}

.profile-modern-section-head {
    margin-bottom: 22px;
}

.profile-modern-section-head-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.profile-modern-stats,
.profile-modern-direction-grid,
.profile-modern-potential-grid,
.profile-modern-contact-grid {
    display: grid;
    gap: 16px;
}

.profile-modern-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-modern-stat-card {
    min-height: 118px;
    padding: 22px;
    border: 1px solid rgba(22, 131, 74, 0.12);
    border-radius: 18px;
    background: linear-gradient(135deg, #effaf3, #ffffff);
    box-shadow: 0 14px 32px rgba(16, 82, 44, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-modern-stat-card:hover,
.profile-modern-direction-card:hover,
.profile-modern-potential-card:hover,
.profile-modern-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(16, 82, 44, 0.12);
}

.profile-modern-stat-icon,
.profile-modern-contact-card div,
.profile-modern-panel-title svg {
    color: #16834a;
}

.profile-modern-stat-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 14px;
    background: #dcf4e5;
    display: grid;
    place-items: center;
}

.profile-modern-stat-icon svg,
.profile-modern-contact-card svg {
    width: 24px;
    height: 24px;
}

.profile-modern-stat-card strong {
    display: block;
    color: #087239;
    font-size: 1.68rem;
    line-height: 1;
    font-weight: 900;
}

.profile-modern-stat-card span {
    display: block;
    margin-top: 6px;
    color: #506157;
    font-size: 0.9rem;
    font-weight: 700;
}

.profile-modern-vision {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-modern-panel {
    min-height: 245px;
}

.profile-modern-panel-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.profile-modern-panel-title svg {
    width: 30px;
    height: 30px;
}

.profile-modern-panel p {
    margin: 0;
}

.profile-modern-list {
    margin: 0;
    padding-left: 20px;
    color: #4f6358;
    line-height: 1.8;
}

.profile-modern-list li + li {
    margin-top: 7px;
}

.profile-modern-direction-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-modern-direction-card {
    min-height: 176px;
    padding: 22px 18px;
    border: 1px solid rgba(22, 131, 74, 0.12);
    border-radius: 18px;
    background: #fff;
    text-align: center;
    box-shadow: 0 12px 30px rgba(16, 82, 44, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-modern-direction-card div {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 16px;
    background: #ecf9f1;
    color: #16834a;
    display: grid;
    place-items: center;
}

.profile-modern-direction-card svg {
    width: 28px;
    height: 28px;
}

.profile-modern-direction-card h3 {
    font-size: 1rem;
}

.profile-modern-direction-card p {
    margin: 10px 0 0;
    font-size: 0.9rem;
}

.profile-modern-potential-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-modern-potential-card {
    overflow: hidden;
    border: 1px solid rgba(22, 131, 74, 0.12);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(16, 82, 44, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-modern-potential-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.profile-modern-potential-card div {
    padding: 18px;
}

.profile-modern-potential-card h3 {
    font-size: 1.05rem;
}

.profile-modern-potential-card p {
    margin: 8px 0 0;
    font-size: 0.92rem;
}

.profile-modern-officials-section {
    text-align: center;
}

.profile-modern-officials-section .profile-modern-section-head {
    text-align: left;
}

.profile-modern-officials {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.profile-modern-official {
    padding: 10px;
}

.profile-modern-official img {
    width: 116px;
    height: 116px;
    margin: 0 auto 14px;
    border-radius: 50%;
    object-fit: cover;
    background: #e8f6ee;
    box-shadow: 0 14px 30px rgba(22, 131, 74, 0.12);
}

.profile-modern-official strong,
.profile-modern-official span {
    display: block;
}

.profile-modern-official strong {
    color: #073d20;
    font-weight: 900;
}

.profile-modern-official span {
    margin-top: 4px;
    color: #596b60;
    font-size: 0.9rem;
    font-weight: 700;
}

.profile-modern-button,
.profile-modern-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    font-weight: 800;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.profile-modern-button {
    min-height: 46px;
    margin-top: 22px;
    padding: 0 20px;
    background: #16834a;
    color: #fff;
    box-shadow: 0 14px 26px rgba(22, 131, 74, 0.22);
}

.profile-modern-button svg {
    width: 18px;
    height: 18px;
}

.profile-modern-button:hover {
    transform: translateY(-2px);
    background: #0e6938;
    box-shadow: 0 18px 34px rgba(22, 131, 74, 0.28);
}

.profile-modern-link {
    min-height: 40px;
    padding: 0 14px;
    color: #16834a;
    background: #eaf8ef;
}

.profile-modern-link:hover {
    color: #fff;
    background: #16834a;
}

.profile-modern-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.profile-modern-gallery-item {
    position: relative;
    min-height: 190px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(16, 82, 44, 0.1);
}

.profile-modern-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.profile-modern-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(7, 61, 32, 0.76));
}

.profile-modern-gallery-item span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 1;
    color: #fff;
    font-weight: 900;
}

.profile-modern-gallery-item:hover img {
    transform: scale(1.05);
}

.profile-modern-contact-section {
    background:
        radial-gradient(circle at top left, rgba(22, 131, 74, 0.12), transparent 32%),
        #fff;
}

.profile-modern-contact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-modern-contact-card {
    min-height: 168px;
    padding: 22px;
    border: 1px solid rgba(22, 131, 74, 0.12);
    border-radius: 18px;
    background: linear-gradient(135deg, #f6fcf8, #fff);
    box-shadow: 0 12px 30px rgba(16, 82, 44, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-modern-contact-card div {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 15px;
    background: #e8f6ee;
    display: grid;
    place-items: center;
}

.profile-modern-contact-card h3 {
    font-size: 0.98rem;
}

.profile-modern-contact-card p {
    margin: 8px 0 0;
    font-size: 0.92rem;
}

@media (max-width: 1024px) {
    .profile-modern-badges,
    .profile-modern-stats,
    .profile-modern-direction-grid,
    .profile-modern-potential-grid,
    .profile-modern-contact-grid,
    .profile-modern-officials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-modern-about,
    .profile-modern-vision {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .profile-modern {
        padding: 16px 0 56px;
    }

    .profile-modern-container {
        width: calc(100% - 20px);
    }

    .profile-modern-hero {
        min-height: 0;
        border-radius: 22px;
    }

    .profile-modern-hero-content {
        min-height: 360px;
        padding: 30px 22px;
    }

    .profile-modern-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.25rem);
    }

    .profile-modern-hero p {
        font-size: 0.98rem;
    }

    .profile-modern-badges,
    .profile-modern-stats,
    .profile-modern-direction-grid,
    .profile-modern-potential-grid,
    .profile-modern-contact-grid,
    .profile-modern-officials,
    .profile-modern-gallery {
        grid-template-columns: 1fr;
    }

    .profile-modern-about-text,
    .profile-modern-greeting,
    .profile-modern-panel,
    .profile-modern-section {
        padding: 22px;
        border-radius: 18px;
    }

    .profile-modern-greeting-body {
        grid-template-columns: 1fr;
    }

    .profile-modern-greeting-body img {
        width: 104px;
        height: 104px;
    }

    .profile-modern-section-head-row {
        display: block;
    }

    .profile-modern-link {
        margin-top: 14px;
    }
}

/* Structure page */
.structure-page {
    background: linear-gradient(180deg, #f4fbf6 0%, #ffffff 42%, #f0f8f3 100%);
}

.structure-main {
    padding: 28px 0 76px;
}

.structure-container {
    width: min(calc(100% - 20px), 1480px);
    margin: 0 auto;
}

.structure-hero,
.structure-hierarchy {
    border: 1px solid rgba(22, 131, 74, 0.12);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 46px rgba(16, 82, 44, 0.08);
}

.structure-hero {
    position: relative;
    overflow: hidden;
    padding: 34px;
}

.structure-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(22, 131, 74, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(22, 131, 74, 0.08), transparent 48%);
    pointer-events: none;
}

.structure-breadcrumb,
.structure-hero-content {
    position: relative;
    z-index: 1;
}

.structure-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    color: #64766b;
    font-size: 0.92rem;
    font-weight: 800;
}

.structure-breadcrumb a {
    color: #16834a;
}

.structure-hero-content {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.structure-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    color: #16834a;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.structure-hero h1 {
    margin: 0;
    color: #073d20;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.3rem, 4vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.structure-hero p {
    margin: 14px 0 0;
    color: #53665b;
    font-size: 1.08rem;
}

.structure-back-button {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    background: #16834a;
    color: #fff;
    box-shadow: 0 14px 28px rgba(22, 131, 74, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 900;
    white-space: nowrap;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.structure-back-button:hover {
    transform: translateY(-2px);
    background: #0e6938;
    box-shadow: 0 18px 34px rgba(22, 131, 74, 0.28);
}

.structure-back-button svg {
    width: 18px;
    height: 18px;
}

.structure-hierarchy {
    margin-top: 22px;
    padding: 34px;
}

.structure-level {
    display: flex;
    justify-content: center;
}

.structure-card {
    width: 100%;
    min-height: 238px;
    padding: 28px 22px;
    border: 1px solid rgba(22, 131, 74, 0.12);
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff, #f7fcf9);
    box-shadow: 0 14px 34px rgba(16, 82, 44, 0.08);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.structure-card:hover {
    transform: translateY(-5px);
    border-color: rgba(22, 131, 74, 0.26);
    box-shadow: 0 24px 48px rgba(16, 82, 44, 0.13);
}

.structure-card.is-headman {
    max-width: 340px;
    background:
        radial-gradient(circle at top right, rgba(22, 131, 74, 0.16), transparent 38%),
        #fff;
}

.structure-card.is-secretary {
    max-width: 320px;
}

.structure-card img {
    width: 116px;
    height: 116px;
    margin: 0 auto 18px;
    border: 5px solid #e8f6ee;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 14px 30px rgba(22, 131, 74, 0.14);
}

.structure-card h3 {
    margin: 0;
    color: #073d20;
    font-family: 'Manrope', sans-serif;
    font-size: 1.14rem;
    line-height: 1.25;
    letter-spacing: 0;
}

.structure-card p {
    margin: 8px 0 0;
    color: #16834a;
    font-weight: 800;
}

.structure-connector {
    width: 2px;
    height: 34px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(22, 131, 74, 0.18), rgba(22, 131, 74, 0.55));
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 1024px) {
    .structure-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .structure-hero-content {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .structure-main {
        padding: 16px 0 56px;
    }

    .structure-container {
        width: calc(100% - 20px);
    }

    .structure-hero,
    .structure-hierarchy {
        border-radius: 20px;
    }

    .structure-hero,
    .structure-hierarchy {
        padding: 22px;
    }

    .structure-hero h1 {
        font-size: clamp(2.2rem, 12vw, 3rem);
    }

    .structure-back-button {
        width: 100%;
    }

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

/* Modern infographic page */
.infographic-modern {
    padding: 28px 0 76px;
    background: linear-gradient(180deg, #f6fbf8 0%, #ffffff 40%, #f2f8ff 100%);
}

.infographic-modern-container {
    width: min(calc(100% - 20px), 1480px);
    margin: 0 auto;
}

.infographic-modern-stats {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.15fr;
    gap: 18px;
}

.infographic-stat-card {
    position: relative;
    min-height: 172px;
    padding: 26px;
    border-radius: 24px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 44px rgba(16, 82, 44, 0.12);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.infographic-stat-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -46px;
    top: -44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.infographic-stat-card:hover,
.infographic-panel:hover,
.infographic-job-grid article:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 56px rgba(16, 82, 44, 0.16);
}

.infographic-stat-card.is-green {
    background: linear-gradient(135deg, #16834a, #0b5f32);
}

.infographic-stat-card.is-blue {
    background: linear-gradient(135deg, #2475d1, #174b91);
}

.infographic-stat-card.is-yellow {
    background: linear-gradient(135deg, #f3b51b, #c88705);
}

.infographic-stat-card.is-teal {
    background: linear-gradient(135deg, #0f9f8d, #087465);
}

.infographic-stat-icon {
    position: relative;
    z-index: 1;
    width: 68px;
    height: 68px;
    flex: 0 0 auto;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
}

.infographic-stat-icon svg {
    width: 36px;
    height: 36px;
}

.infographic-stat-card strong,
.infographic-stat-card span {
    position: relative;
    z-index: 1;
    display: block;
}

.infographic-stat-card strong {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    font-weight: 900;
}

.infographic-stat-card span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 800;
}

.infographic-dashboard-grid,
.infographic-split-grid {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.infographic-dashboard-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
}

.infographic-panel-large {
    grid-row: span 2;
}

.infographic-split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.infographic-panel {
    min-height: 360px;
    padding: 28px;
    border: 1px solid rgba(22, 131, 74, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 46px rgba(16, 82, 44, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.infographic-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.infographic-eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    color: #16834a;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.infographic-panel h2 {
    margin: 0;
    color: #073d20;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.18;
    letter-spacing: 0;
}

.infographic-mini-icons {
    display: flex;
    gap: 8px;
}

.infographic-mini-icons span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #ecf8f1;
    color: #16834a;
    display: grid;
    place-items: center;
}

.infographic-mini-icons svg {
    width: 22px;
    height: 22px;
}

.infographic-chart-wrap {
    position: relative;
    height: 250px;
}

.infographic-panel-large .infographic-chart-wrap {
    height: 330px;
}

.infographic-chart-wrap canvas {
    width: 100% !important;
    height: 100% !important;
}

.infographic-gender-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.infographic-gender-summary div {
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f3fbf6, #fff);
    border: 1px solid rgba(22, 131, 74, 0.1);
}

.infographic-gender-summary strong,
.infographic-gender-summary span {
    display: block;
}

.infographic-gender-summary strong {
    color: #16834a;
    font-size: 1.6rem;
    font-weight: 900;
}

.infographic-gender-summary span {
    margin-top: 4px;
    color: #526459;
    font-weight: 800;
}

.infographic-progress-list {
    display: grid;
    gap: 18px;
}

.infographic-progress-item > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.infographic-progress-item span {
    color: #526459;
    font-weight: 800;
}

.infographic-progress-item strong {
    color: #073d20;
    font-weight: 900;
}

.infographic-progress-track {
    height: 12px;
    border-radius: 999px;
    background: #e8f0ec;
    overflow: hidden;
}

.infographic-progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #16834a, #36b36d);
}

.infographic-progress-item.is-blue .infographic-progress-track span {
    background: linear-gradient(90deg, #2475d1, #68a8f2);
}

.infographic-work-panel {
    min-height: auto;
}

.infographic-job-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.infographic-job-grid article {
    min-height: 132px;
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fcfa, #fff);
    border: 1px solid rgba(22, 131, 74, 0.12);
    box-shadow: 0 12px 30px rgba(16, 82, 44, 0.07);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.infographic-job-grid strong {
    color: #16834a;
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 900;
}

.infographic-job-grid span {
    margin-top: 10px;
    color: #53665b;
    font-weight: 800;
}

[data-infographic-reveal] {
    opacity: 0;
    transform: translateY(22px);
}

[data-infographic-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (max-width: 1024px) {
    .infographic-modern-stats,
    .infographic-dashboard-grid,
    .infographic-split-grid,
    .infographic-job-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .infographic-panel-large {
        grid-row: auto;
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .infographic-modern {
        padding: 16px 0 56px;
    }

    .infographic-modern-container {
        width: calc(100% - 20px);
    }

    .infographic-modern-stats,
    .infographic-dashboard-grid,
    .infographic-split-grid,
    .infographic-job-grid,
    .infographic-gender-summary {
        grid-template-columns: 1fr;
    }

    .infographic-stat-card,
    .infographic-panel {
        border-radius: 20px;
        padding: 22px;
    }

    .infographic-chart-wrap,
    .infographic-panel-large .infographic-chart-wrap {
        height: 260px;
    }
}

/* Compact infographic dashboard overrides */
.infografis-container,
.infographic-modern-container {
    width: min(calc(100% - 40px), 1100px);
    margin-inline: auto;
}

.infografis-container.page-hero-inner {
    width: min(calc(100% - 40px), 1100px);
    max-width: 1100px;
    min-height: 250px;
    padding: 34px;
    border-radius: 22px;
}

.infografis-container.page-hero-inner h1 {
    font-size: clamp(2.35rem, 4.5vw, 3.5rem);
}

.infografis-container.page-hero-inner p {
    max-width: 620px;
    font-size: 1rem;
}

.infographic-modern {
    padding: 24px 0 68px;
}

.infographic-modern-stats,
.infographic-dashboard-grid,
.infographic-split-grid,
.infographic-summary-grid,
.infographic-work-panel {
    margin-top: 24px;
}

.infographic-modern-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.infographic-stat-card {
    min-height: 118px;
    padding: 18px;
    border-radius: 18px;
    gap: 14px;
    box-shadow: 0 14px 30px rgba(16, 82, 44, 0.1);
}

.infographic-stat-card.is-green {
    background: linear-gradient(135deg, #2f9b61, #16834a);
}

.infographic-stat-card.is-blue {
    background: linear-gradient(135deg, #5d9fe7, #2f73c8);
}

.infographic-stat-card.is-yellow {
    background: linear-gradient(135deg, #f5ca55, #d69a13);
}

.infographic-stat-card.is-teal {
    background: linear-gradient(135deg, #44b8aa, #0f8d7c);
}

.infographic-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
}

.infographic-stat-icon svg {
    width: 25px;
    height: 25px;
}

.infographic-stat-card strong {
    font-size: clamp(1.55rem, 2.2vw, 2.05rem);
}

.infographic-stat-card span {
    margin-top: 5px;
    font-size: 0.88rem;
}

.infographic-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.infographic-panel {
    min-height: auto;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(16, 82, 44, 0.08);
}

.infographic-panel-large {
    grid-row: auto;
}

.infographic-panel-head {
    margin-bottom: 16px;
}

.infographic-panel-head p {
    max-width: 420px;
    margin: 8px 0 0;
    color: #637468;
    font-size: 0.92rem;
    line-height: 1.55;
}

.infographic-panel h2 {
    font-size: clamp(1.18rem, 1.8vw, 1.55rem);
}

.infographic-mini-icons span {
    width: 36px;
    height: 36px;
    border-radius: 12px;
}

.infographic-mini-icons svg {
    width: 19px;
    height: 19px;
}

.infographic-chart-wrap,
.infographic-panel-large .infographic-chart-wrap {
    height: 260px;
    max-height: 260px;
}

.infographic-gender-summary {
    margin-top: 14px;
    gap: 12px;
}

.infographic-gender-summary div {
    padding: 14px;
    border-radius: 14px;
}

.infographic-gender-summary strong {
    font-size: 1.25rem;
}

.infographic-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.infographic-summary-card {
    min-height: 112px;
    padding: 18px;
    border: 1px solid rgba(22, 131, 74, 0.12);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #f4fbf6);
    box-shadow: 0 12px 28px rgba(16, 82, 44, 0.07);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.infographic-summary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(16, 82, 44, 0.12);
}

.infographic-summary-card svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    color: #16834a;
}

.infographic-summary-card p {
    margin: 0;
    color: #43574b;
    font-weight: 800;
    line-height: 1.55;
}

.infographic-split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.infographic-work-panel {
    width: 100%;
}

.infographic-job-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.infographic-job-grid article {
    min-height: 108px;
    padding: 18px;
    border-radius: 16px;
}

.infographic-job-grid strong {
    font-size: 1.75rem;
}

@media (max-width: 1024px) {
    .infografis-container,
    .infographic-modern-container,
    .infografis-container.page-hero-inner {
        width: min(calc(100% - 32px), 1100px);
    }

    .infographic-modern-stats,
    .infographic-dashboard-grid,
    .infographic-split-grid,
    .infographic-summary-grid,
    .infographic-job-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .infografis-container,
    .infographic-modern-container,
    .infografis-container.page-hero-inner {
        width: calc(100% - 24px);
    }

    .infografis-container.page-hero-inner {
        min-height: 220px;
        padding: 26px 20px;
        border-radius: 18px;
    }

    .infographic-modern-stats,
    .infographic-dashboard-grid,
    .infographic-split-grid,
    .infographic-summary-grid,
    .infographic-job-grid,
    .infographic-gender-summary {
        grid-template-columns: 1fr;
    }

    .infographic-stat-card {
        min-height: 108px;
    }

    .infographic-chart-wrap,
    .infographic-panel-large .infographic-chart-wrap {
        height: 240px;
        max-height: 240px;
    }
}

/* Global page hero standard */
.container-main {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-section {
    width: 100%;
    margin-bottom: 30px;
}

.page-hero.hero-section {
    padding: 28px 0 0;
}

.hero-section .page-hero-inner,
.profile-modern-hero.hero-section {
    width: 100%;
    min-height: 260px;
    height: 260px;
    max-height: 280px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.12);
}

.hero-section .page-hero-inner {
    padding: 34px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
        var(--page-hero-image);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section .page-hero-inner h1 {
    font-size: clamp(2.25rem, 4vw, 3.6rem);
}

.hero-section .page-hero-inner p {
    max-width: 650px;
    font-size: 1rem;
}

.profile-modern-container,
.infographic-modern-container,
.infografis-container {
    width: 100%;
    max-width: 1380px;
    margin-inline: auto;
    padding-inline: 20px;
    box-sizing: border-box;
}

.profile-modern-hero.hero-section {
    min-height: 260px;
    height: 260px;
    margin-bottom: 30px;
    border-radius: 20px;
}

.profile-modern-hero.hero-section .profile-modern-hero-content {
    width: 100%;
    min-height: 260px;
    height: 260px;
    padding: 34px;
}

.profile-modern-hero.hero-section h1 {
    font-size: clamp(2.25rem, 4vw, 3.6rem);
}

.profile-modern-hero.hero-section p {
    max-width: 650px;
    font-size: 1rem;
}

.profile-modern-hero.hero-section .profile-modern-badges {
    margin-top: 22px;
}

@media (max-width: 1024px) {
    .container-main,
    .profile-modern-container,
    .infographic-modern-container,
    .infografis-container {
        padding-inline: 16px;
    }
}

@media (max-width: 760px) {
    .container-main,
    .profile-modern-container,
    .infographic-modern-container,
    .infografis-container {
        padding-inline: 12px;
    }

    .hero-section .page-hero-inner,
    .profile-modern-hero.hero-section {
        min-height: 200px;
        height: auto;
        max-height: none;
        border-radius: 18px;
    }

    .hero-section .page-hero-inner,
    .profile-modern-hero.hero-section .profile-modern-hero-content {
        min-height: 200px;
        height: auto;
        padding: 24px 20px;
    }

    .hero-section .page-hero-inner h1 {
        font-size: clamp(2rem, 10vw, 2.55rem);
    }

    .hero-section .page-hero-inner p {
        font-size: 0.94rem;
        line-height: 1.55;
    }

    .profile-modern-hero.hero-section .profile-modern-badges {
        grid-template-columns: 1fr;
    }
}

/* Infographic dashboard polish */
.main-nav {
    gap: 14px;
}

.main-nav > a,
.nav-dropdown-label {
    position: relative;
    border-radius: 0;
    padding-inline: 8px;
}

.main-nav > a::after,
.nav-dropdown-label::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: #9be6ad;
    opacity: 0;
    transform: scaleX(0.45);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav > a.active::after,
.main-nav > a:hover::after,
.nav-dropdown:hover .nav-dropdown-label::after,
.nav-dropdown.is-open .nav-dropdown-label::after {
    opacity: 1;
    transform: scaleX(1);
}

.main-nav > a.active,
.main-nav > a:hover,
.nav-dropdown:hover .nav-dropdown-label,
.nav-dropdown.is-open .nav-dropdown-label {
    background: transparent;
    color: #fff;
}

.infographic-dashboard-page {
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
}

.infographic-dashboard-page .hero-section .page-hero-inner {
    background:
        linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
        var(--page-hero-image);
    background-position: center;
    background-size: cover;
}

.infographic-dashboard-page .hero-section .page-hero-inner h1 {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-weight: 800;
}

.infographic-dashboard-page .infographic-modern {
    padding-bottom: 132px;
    background: linear-gradient(180deg, #f7fbf9 0%, #ffffff 42%, #f5f9ff 100%);
}

.infographic-dashboard-page .infographic-modern-container {
    max-width: 1100px;
}

.infographic-dashboard-page .infographic-modern-stats {
    gap: 18px;
}

.infographic-dashboard-page .infographic-stat-card {
    min-height: 136px;
    padding: 24px;
    border-radius: 20px;
    align-items: center;
    color: #14231a;
    background: #fff;
    border: 1px solid rgba(20, 35, 26, 0.08);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.infographic-dashboard-page .infographic-stat-card::after {
    background: currentColor;
    opacity: 0.06;
}

.infographic-dashboard-page .infographic-stat-card.is-green {
    color: #16834a;
    background: linear-gradient(135deg, #f2fbf5, #ffffff);
}

.infographic-dashboard-page .infographic-stat-card.is-blue {
    color: #2f73c8;
    background: linear-gradient(135deg, #f1f7ff, #ffffff);
}

.infographic-dashboard-page .infographic-stat-card.is-yellow {
    color: #c88705;
    background: linear-gradient(135deg, #fff9e8, #ffffff);
}

.infographic-dashboard-page .infographic-stat-card.is-teal {
    color: #0f8d7c;
    background: linear-gradient(135deg, #ecfbf8, #ffffff);
}

.infographic-dashboard-page .infographic-stat-icon {
    width: 56px;
    height: 56px;
    color: #fff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.infographic-dashboard-page .infographic-stat-card.is-green .infographic-stat-icon {
    background: #16834a;
}

.infographic-dashboard-page .infographic-stat-card.is-blue .infographic-stat-icon {
    background: #2f73c8;
}

.infographic-dashboard-page .infographic-stat-card.is-yellow .infographic-stat-icon {
    background: #d69a13;
}

.infographic-dashboard-page .infographic-stat-card.is-teal .infographic-stat-icon {
    background: #0f8d7c;
}

.infographic-dashboard-page .infographic-stat-icon svg {
    width: 28px;
    height: 28px;
}

.infographic-dashboard-page .infographic-stat-card strong {
    color: #122019;
    font-size: clamp(1.8rem, 2.6vw, 2.35rem);
}

.infographic-dashboard-page .infographic-stat-card span {
    color: #53665b;
    font-size: 0.92rem;
}

.infographic-dashboard-page .infographic-stat-card small {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 8px;
    color: #7a8a80;
    font-size: 0.78rem;
    font-weight: 700;
}

.infographic-dashboard-page .infographic-panel {
    border-color: rgba(20, 35, 26, 0.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.infographic-dashboard-page .infographic-panel h2 {
    font-family: 'Poppins', 'Manrope', sans-serif;
    color: #13251b;
    font-weight: 700;
}

.infographic-dashboard-page .infographic-eyebrow {
    color: #16834a;
    font-weight: 800;
}

.infographic-dashboard-page .infographic-chart-wrap,
.infographic-dashboard-page .infographic-panel-large .infographic-chart-wrap {
    height: 278px;
    max-height: 278px;
}

.infographic-dashboard-page .infographic-gender-summary div {
    background: #f8faf9;
}

.infographic-dashboard-page .infographic-gender-summary small {
    display: block;
    margin-top: 4px;
    color: #7a8a80;
    font-size: 0.82rem;
    font-weight: 800;
}

.infographic-dashboard-page .feedback-widget {
    bottom: 22px;
}

@media (max-width: 1024px) {
    .main-nav {
        gap: 10px;
    }
}

@media (max-width: 760px) {
    .infographic-dashboard-page .infographic-modern-stats,
    .infographic-dashboard-page .infographic-dashboard-grid,
    .infographic-dashboard-page .infographic-summary-grid,
    .infographic-dashboard-page .infographic-split-grid,
    .infographic-dashboard-page .infographic-job-grid {
        gap: 14px;
    }

    .infographic-dashboard-page .infographic-stat-card {
        min-height: 124px;
        padding: 20px;
    }

    .infographic-dashboard-page .infographic-chart-wrap,
    .infographic-dashboard-page .infographic-panel-large .infographic-chart-wrap {
        height: 248px;
        max-height: 248px;
    }
}

/* Final infographic width alignment */
.infographic-dashboard-page .page-hero .container-main,
.infographic-dashboard-page .infographic-modern-container {
    width: 100% !important;
    max-width: 1380px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box;
}

.infographic-dashboard-page .infographic-modern-stats,
.infographic-dashboard-page .infographic-dashboard-grid,
.infographic-dashboard-page .infographic-summary-grid,
.infographic-dashboard-page .infographic-split-grid,
.infographic-dashboard-page .infographic-work-panel {
    width: 100%;
}

@media (max-width: 760px) {
    .infographic-dashboard-page .page-hero .container-main,
    .infographic-dashboard-page .infographic-modern-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

/* BUMDes modern page */
.bumdes-modern-page {
    background: linear-gradient(180deg, #f6fbf8 0%, #ffffff 38%, #eff8f3 100%);
}

.bumdes-modern {
    padding: 24px 0 132px;
}

.bumdes-modern-container {
    display: grid;
    gap: 24px;
}

.bumdes-intro-grid,
.bumdes-split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
    gap: 24px;
}

.bumdes-intro-card,
.bumdes-quote-card,
.bumdes-section,
.bumdes-cta {
    border: 1px solid rgba(22, 131, 74, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.bumdes-intro-card,
.bumdes-section,
.bumdes-cta {
    padding: 28px;
}

.bumdes-eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: #16834a;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bumdes-modern h2,
.bumdes-modern h3 {
    margin: 0;
    color: #0d3f25;
    font-family: 'Poppins', 'Manrope', sans-serif;
    letter-spacing: 0;
}

.bumdes-modern h2 {
    font-size: clamp(1.55rem, 2.6vw, 2.45rem);
    line-height: 1.18;
}

.bumdes-modern h3 {
    font-size: 1.12rem;
    line-height: 1.28;
}

.bumdes-modern p {
    margin: 14px 0 0;
    color: #52675a;
    line-height: 1.75;
}

.bumdes-quote-card {
    min-height: 100%;
    padding: 28px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(13, 88, 47, 0.94), rgba(22, 131, 74, 0.86)),
        url('https://images.unsplash.com/photo-1470770903676-69b98201ea1c?auto=format&fit=crop&w=1200&q=85') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bumdes-quote-card span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 800;
}

.bumdes-quote-card strong {
    display: block;
    margin-top: 12px;
    color: #fff;
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-size: clamp(1.35rem, 2.3vw, 2rem);
    line-height: 1.28;
}

.bumdes-section-head {
    max-width: 860px;
    margin-bottom: 22px;
}

.bumdes-stats-grid,
.bumdes-unit-grid,
.bumdes-check-list,
.bumdes-cta-actions {
    display: grid;
    gap: 16px;
}

.bumdes-stats-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.bumdes-stat-card,
.bumdes-unit-card,
.bumdes-check-list div {
    border: 1px solid rgba(22, 131, 74, 0.12);
    border-radius: 18px;
    background: linear-gradient(135deg, #f8fcfa, #fff);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.bumdes-stat-card {
    min-height: 150px;
    padding: 20px;
}

.bumdes-stat-card div,
.bumdes-unit-card div {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 15px;
    color: #16834a;
    background: #e8f7ee;
    display: grid;
    place-items: center;
}

.bumdes-stat-card svg,
.bumdes-unit-card svg,
.bumdes-check-list svg,
.bumdes-button svg {
    width: 22px;
    height: 22px;
}

.bumdes-stat-card span,
.bumdes-stat-card strong {
    display: block;
}

.bumdes-stat-card span {
    color: #65766c;
    font-size: 0.86rem;
    font-weight: 800;
}

.bumdes-stat-card strong {
    margin-top: 8px;
    color: #0d3f25;
    font-size: 1.18rem;
    line-height: 1.28;
    font-weight: 900;
}

.bumdes-unit-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.bumdes-unit-card {
    min-height: 260px;
    padding: 22px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.bumdes-unit-card:hover,
.bumdes-stat-card:hover,
.bumdes-check-list div:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.bumdes-unit-card p {
    font-size: 0.94rem;
}

.bumdes-split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bumdes-compact-section {
    min-height: 100%;
}

.bumdes-check-list {
    gap: 12px;
}

.bumdes-check-list div {
    min-height: 58px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.bumdes-check-list svg {
    flex: 0 0 auto;
    color: #16834a;
}

.bumdes-check-list span {
    color: #43574b;
    font-weight: 800;
    line-height: 1.45;
}

.bumdes-cta {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 32%),
        linear-gradient(135deg, #0d3f25, #16834a);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    align-items: center;
    gap: 24px;
}

.bumdes-cta .bumdes-eyebrow,
.bumdes-cta h2,
.bumdes-cta p {
    color: #fff;
}

.bumdes-cta p {
    color: rgba(255, 255, 255, 0.82);
}

.bumdes-cta-actions {
    grid-template-columns: 1fr;
}

.bumdes-button {
    min-height: 52px;
    padding: 0 20px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 900;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.bumdes-button:hover {
    transform: translateY(-2px);
}

.bumdes-button.is-primary {
    background: #fff;
    color: #0d3f25;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.bumdes-button.is-secondary {
    border: 1px solid rgba(255, 255, 255, 0.46);
    color: #fff;
}

.bumdes-button.is-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1200px) {
    .bumdes-stats-grid,
    .bumdes-unit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .bumdes-intro-grid,
    .bumdes-split-grid,
    .bumdes-cta {
        grid-template-columns: 1fr;
    }

    .bumdes-stats-grid,
    .bumdes-unit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .bumdes-modern {
        padding: 16px 0 112px;
    }

    .bumdes-intro-card,
    .bumdes-section,
    .bumdes-cta,
    .bumdes-quote-card {
        padding: 22px;
        border-radius: 18px;
    }

    .bumdes-stats-grid,
    .bumdes-unit-grid {
        grid-template-columns: 1fr;
    }

    .bumdes-unit-card {
        min-height: auto;
    }
}

/* Kopdes modern page */
.kopdes-modern-page {
    background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 42%, #f1f8f4 100%);
}

.kopdes-modern {
    padding: 24px 0 132px;
}

.kopdes-modern-container {
    display: grid;
    gap: 24px;
}

.kopdes-intro-grid,
.kopdes-split-grid,
.kopdes-address-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
    gap: 24px;
}

.kopdes-intro-card,
.kopdes-slogan-card,
.kopdes-section,
.kopdes-address-card,
.kopdes-cta-card {
    border: 1px solid rgba(22, 131, 74, 0.13);
    border-radius: 22px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.kopdes-intro-card,
.kopdes-section,
.kopdes-address-card,
.kopdes-cta-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.96);
}

.kopdes-slogan-card {
    min-height: 100%;
    padding: 28px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.3), transparent 34%),
        linear-gradient(135deg, rgba(186, 28, 28, 0.96), rgba(22, 131, 74, 0.92)),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1200&q=85') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.kopdes-slogan-card span {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.kopdes-slogan-card strong {
    display: block;
    margin-top: 12px;
    color: #fff;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(1.35rem, 2.25vw, 2.05rem);
    line-height: 1.28;
}

.kopdes-eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: #16834a;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.kopdes-modern h2,
.kopdes-modern h3 {
    margin: 0;
    color: #0d3f25;
    font-family: 'Poppins', 'Inter', sans-serif;
    letter-spacing: 0;
}

.kopdes-modern h2 {
    font-size: clamp(1.5rem, 2.45vw, 2.35rem);
    line-height: 1.18;
}

.kopdes-modern h3 {
    font-size: 1.08rem;
    line-height: 1.3;
}

.kopdes-modern p {
    margin: 14px 0 0;
    color: #52675a;
    line-height: 1.75;
}

.kopdes-section-head {
    max-width: 880px;
    margin-bottom: 22px;
}

.kopdes-officer-grid,
.kopdes-stats-grid,
.kopdes-service-grid,
.kopdes-check-list,
.kopdes-cta-actions {
    display: grid;
    gap: 16px;
}

.kopdes-officer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kopdes-stats-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kopdes-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kopdes-officer-card,
.kopdes-stat-card,
.kopdes-service-card,
.kopdes-check-list div {
    border: 1px solid rgba(22, 131, 74, 0.12);
    border-radius: 18px;
    background: linear-gradient(135deg, #f9fcfa, #fff);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.kopdes-officer-card:hover,
.kopdes-stat-card:hover,
.kopdes-service-card:hover,
.kopdes-check-list div:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 131, 74, 0.24);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.kopdes-officer-card,
.kopdes-stat-card,
.kopdes-service-card {
    padding: 20px;
}

.kopdes-officer-card {
    min-height: 150px;
}

.kopdes-stat-card {
    min-height: 156px;
}

.kopdes-service-card {
    min-height: 270px;
}

.kopdes-officer-card div,
.kopdes-stat-card div,
.kopdes-service-card div,
.kopdes-address-card > div {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 15px;
    color: #16834a;
    background: #e8f7ee;
    display: grid;
    place-items: center;
}

.kopdes-officer-card:nth-child(1) div,
.kopdes-service-card:nth-child(3) div {
    color: #b91c1c;
}

.kopdes-officer-card:nth-child(1) div,
.kopdes-service-card:nth-child(3) div {
    background: #fff0f0;
}

.kopdes-stat-card:nth-child(3) div,
.kopdes-service-card:nth-child(2) div {
    color: #c47a00;
    background: #fff8df;
}

.kopdes-officer-card svg,
.kopdes-stat-card svg,
.kopdes-service-card svg,
.kopdes-check-list svg,
.kopdes-address-card svg,
.kopdes-button svg {
    width: 22px;
    height: 22px;
}

.kopdes-officer-card span,
.kopdes-stat-card span,
.kopdes-officer-card strong,
.kopdes-stat-card strong {
    display: block;
}

.kopdes-officer-card span,
.kopdes-stat-card span {
    color: #65766c;
    font-size: 0.86rem;
    font-weight: 800;
}

.kopdes-officer-card strong,
.kopdes-stat-card strong {
    margin-top: 8px;
    color: #0d3f25;
    font-size: 1.08rem;
    line-height: 1.32;
    font-weight: 900;
}

.kopdes-service-card p {
    font-size: 0.94rem;
}

.kopdes-split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kopdes-compact-section {
    min-height: 100%;
}

.kopdes-check-list {
    gap: 12px;
}

.kopdes-check-list div {
    min-height: 58px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.kopdes-check-list svg {
    flex: 0 0 auto;
    color: #16834a;
}

.kopdes-check-list span {
    color: #43574b;
    font-weight: 800;
    line-height: 1.45;
}

.kopdes-address-cta {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.kopdes-address-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 244, 0.95)),
        radial-gradient(circle at top right, rgba(185, 28, 28, 0.1), transparent 32%);
}

.kopdes-cta-card {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 34%),
        linear-gradient(135deg, #0d3f25, #16834a 58%, #b91c1c);
}

.kopdes-cta-card .kopdes-eyebrow,
.kopdes-cta-card h2,
.kopdes-cta-card p {
    color: #fff;
}

.kopdes-cta-card p {
    color: rgba(255, 255, 255, 0.84);
}

.kopdes-cta-actions {
    margin-top: 22px;
    grid-template-columns: minmax(220px, 320px);
}

.kopdes-button {
    min-height: 52px;
    padding: 0 20px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 900;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.kopdes-button:hover {
    transform: translateY(-2px);
}

.kopdes-button.is-primary {
    background: #fff;
    color: #0d3f25;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.kopdes-button.is-secondary {
    border: 1px solid rgba(255, 255, 255, 0.48);
    color: #fff;
}

.kopdes-button.is-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1200px) {
    .kopdes-officer-grid,
    .kopdes-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kopdes-stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .kopdes-intro-grid,
    .kopdes-split-grid,
    .kopdes-address-cta {
        grid-template-columns: 1fr;
    }

    .kopdes-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .kopdes-modern {
        padding: 16px 0 112px;
    }

    .kopdes-intro-card,
    .kopdes-section,
    .kopdes-address-card,
    .kopdes-cta-card,
    .kopdes-slogan-card {
        padding: 22px;
        border-radius: 18px;
    }

    .kopdes-officer-grid,
    .kopdes-stats-grid,
    .kopdes-service-grid,
    .kopdes-cta-actions {
        grid-template-columns: 1fr;
    }

    .kopdes-service-card {
        min-height: auto;
    }
}

/* Final global navbar polish */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e6eee9;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.04);
}

.nav-row {
    min-height: 84px;
    gap: 22px;
}

.main-nav {
    gap: clamp(14px, 1.6vw, 24px) !important;
    margin: 0 18px;
    font-size: 15.5px !important;
}

.main-nav > a,
.nav-dropdown-label,
.nav-cta {
    position: relative;
    min-height: 44px;
    padding: 0 4px;
    border-radius: 0;
    color: #1f2933 !important;
    background: transparent !important;
    font-family: 'Inter', 'Poppins', 'Manrope', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav > a::after,
.nav-dropdown-label::after,
.nav-cta::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    border-radius: 999px;
    background: #16834a;
    opacity: 0;
    transform: scaleX(0.45);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-dropdown:hover .nav-dropdown-label,
.nav-dropdown.is-open .nav-dropdown-label,
.nav-dropdown:has(.active) .nav-dropdown-label,
.nav-cta:hover,
.nav-cta.active {
    color: #16834a !important;
    font-weight: 800;
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown:hover .nav-dropdown-label::after,
.nav-dropdown.is-open .nav-dropdown-label::after,
.nav-dropdown:has(.active) .nav-dropdown-label::after,
.nav-cta:hover::after,
.nav-cta.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-dropdown-menu a {
    color: #ffffff !important;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.16);
}

.nav-dropdown-menu {
    background: #0f3d24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.nav-dropdown-menu a {
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
}

@media (max-width: 1120px) {
    .main-nav {
        gap: 10px !important;
        margin: 0 10px;
        font-size: 14px !important;
    }

    .main-nav > a,
    .nav-dropdown-label,
    .nav-cta {
        font-size: 14px;
        padding-inline: 2px;
    }
}

@media (max-width: 760px) {
    .nav-row {
        min-height: 72px;
    }
}

/* Profile hero visual refinement */
.profile-modern-hero.hero-section .profile-modern-hero-bg {
    background:
        linear-gradient(90deg, rgba(6, 37, 20, 0.68), rgba(6, 37, 20, 0.48) 48%, rgba(6, 37, 20, 0.24)),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=85') center/cover;
}

.profile-modern-hero.hero-section .profile-modern-hero-content {
    justify-content: center;
    gap: 0;
    padding: 34px 28px 32px 28px;
    align-items: flex-start;
    text-align: left;
}

.profile-modern-hero.hero-section .profile-modern-breadcrumb {
    margin: 0 0 12px -10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
    line-height: 1.2;
    width: fit-content;
}

.profile-modern-hero.hero-section .profile-modern-breadcrumb a {
    color: #ffffff;
}

.profile-modern-hero.hero-section h1 {
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.profile-modern-hero.hero-section p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.58;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

.profile-modern-hero.hero-section .profile-modern-badges {
    margin-top: 18px;
    gap: 12px;
}

.profile-modern-hero.hero-section .profile-modern-badge {
    min-height: 64px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.profile-modern-hero.hero-section .profile-modern-badge svg {
    width: 22px;
    height: 22px;
}

.profile-modern-hero.hero-section .profile-modern-badge strong {
    font-size: 0.94rem;
    line-height: 1.18;
}

.profile-modern-hero.hero-section .profile-modern-badge small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    line-height: 1.2;
}

@media (max-width: 760px) {
    .profile-modern-hero.hero-section .profile-modern-hero-content {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .profile-modern-hero.hero-section .profile-modern-breadcrumb {
        margin-bottom: 10px;
        font-size: 0.82rem;
    }

    .profile-modern-hero.hero-section p {
        margin-top: 10px;
    }

    .profile-modern-hero.hero-section .profile-modern-badges {
        margin-top: 16px;
        gap: 10px;
    }

    .profile-modern-hero.hero-section .profile-modern-badge {
        min-height: 58px;
        padding: 11px 12px;
    }
}

/* Footer mini map */
.footer-grid-main {
    grid-template-columns: 1.25fr 1fr 1.15fr 1fr;
    gap: 26px;
}

.footer-map-col {
    min-width: 0;
}

.footer-mini-map {
    overflow: hidden;
    margin-top: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.footer-mini-map iframe {
    width: 100%;
    height: 170px;
    border: 0;
    display: block;
    filter: saturate(0.95) contrast(0.98);
}

.footer-map-button {
    width: fit-content;
    min-height: 34px;
    margin-top: 10px;
    padding: 0 13px;
    border-radius: 999px;
    color: #0d3f25 !important;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem !important;
    line-height: 1 !important;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-map-button:hover {
    background: #dff6e8;
    transform: translateY(-2px);
}

.footer-bottom {
    justify-content: flex-start;
}

@media (max-width: 1024px) {
    .footer-grid-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .footer-grid-main {
        grid-template-columns: 1fr;
    }

    .footer-mini-map iframe {
        height: 160px;
    }
}

/* Footer maximum map layout - absolute final override */
.site-footer {
    padding: 34px 0 16px !important;
}

.site-footer .footer-grid-main {
    display: grid !important;
    grid-template-columns: 0.8fr 0.8fr 2.4fr 0.8fr !important;
    gap: 24px !important;
    align-items: start !important;
}

.site-footer .footer-map-col {
    min-width: 0;
}

.site-footer .footer-brand-col p,
.site-footer .footer-grid p,
.site-footer .footer-map-col p {
    margin-top: 6px !important;
    margin-bottom: 5px !important;
    line-height: 1.38 !important;
}

.site-footer .footer-grid h4 {
    margin-bottom: 7px !important;
}

.site-footer .footer-grid h4:not(:first-child) {
    margin-top: 12px !important;
}

.site-footer .important-numbers {
    gap: 7px !important;
}

.site-footer .footer-mini-map {
    width: 100% !important;
    margin-top: 7px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22) !important;
    overflow: hidden !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.site-footer .footer-mini-map:hover {
    transform: scale(1.01);
}

.site-footer .footer-mini-map iframe {
    width: 100% !important;
    height: 250px !important;
    min-height: 250px !important;
    border: 0 !important;
    border-radius: 14px !important;
    display: block !important;
}

.site-footer .footer-map-button {
    margin-top: 6px !important;
}

.site-footer .footer-bottom {
    margin-top: 14px !important;
    padding-top: 10px !important;
}

@media (max-width: 1100px) {
    .site-footer .footer-grid-main {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
    }

    .site-footer .footer-map-col {
        grid-column: 1 / -1 !important;
    }

    .site-footer .footer-mini-map iframe {
        height: 240px !important;
        min-height: 240px !important;
    }
}

@media (max-width: 760px) {
    .site-footer {
        padding: 30px 0 16px !important;
    }

    .site-footer .footer-grid-main {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .site-footer .footer-map-col {
        grid-column: auto !important;
    }

    .site-footer .footer-mini-map iframe {
        height: 220px !important;
        min-height: 220px !important;
    }
}

/* Footer expanded map layout - keep this block last */
.site-footer {
    padding: 32px 0 16px !important;
}

.site-footer .footer-container {
    width: 100% !important;
    max-width: 1320px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 32px !important;
    padding-left: 32px !important;
    box-sizing: border-box !important;
}

.site-footer .footer-grid-main {
    display: grid !important;
    grid-template-columns: 0.8fr 0.8fr 2.4fr 0.8fr !important;
    gap: 24px !important;
    align-items: start !important;
}

.site-footer .footer-brand-col p,
.site-footer .footer-grid p,
.site-footer .footer-map-col p {
    margin-top: 4px !important;
    margin-bottom: 5px !important;
    line-height: 1.35 !important;
}

.site-footer .footer-grid h4 {
    margin-bottom: 7px !important;
}

.site-footer .footer-grid h4:not(:first-child) {
    margin-top: 12px !important;
}

.site-footer .footer-map-col {
    min-width: 0 !important;
}

.site-footer .footer-mini-map {
    width: 100% !important;
    margin-top: 7px !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25) !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease !important;
}

.site-footer .footer-mini-map:hover {
    transform: scale(1.01) !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28) !important;
}

.site-footer .footer-mini-map iframe {
    display: block !important;
    width: 100% !important;
    height: 250px !important;
    min-height: 250px !important;
    border: 0 !important;
    border-radius: 14px !important;
}

.site-footer .footer-map-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 7px !important;
    padding: 7px 12px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
}

.site-footer .footer-bottom {
    max-width: 1320px !important;
    margin-top: 12px !important;
    padding-top: 10px !important;
}

.feedback-widget {
    bottom: 22px !important;
}

@media (max-width: 1100px) {
    .site-footer .footer-grid-main {
        grid-template-columns: 1fr 1fr !important;
        gap: 22px !important;
    }

    .site-footer .footer-map-col {
        grid-column: 1 / -1 !important;
    }

    .site-footer .footer-mini-map iframe {
        height: 240px !important;
        min-height: 240px !important;
    }
}

@media (max-width: 760px) {
    .site-footer {
        padding: 28px 0 16px !important;
    }

    .site-footer .footer-container {
        padding-right: 18px !important;
        padding-left: 18px !important;
    }

    .site-footer .footer-grid-main {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .site-footer .footer-map-col {
        grid-column: auto !important;
    }

    .site-footer .footer-mini-map iframe {
        height: 220px !important;
        min-height: 220px !important;
    }
}

/* Footer full-width map emphasis - final override */
.site-footer .footer-container {
    width: 100% !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
    box-sizing: border-box !important;
}

.site-footer .footer-grid-main {
    grid-template-columns: 0.8fr 0.8fr 2.4fr 0.8fr !important;
    gap: 24px !important;
}

.site-footer .footer-map-col {
    min-width: 0 !important;
}

.site-footer .footer-mini-map {
    width: 100% !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25) !important;
}

.site-footer .footer-mini-map iframe {
    width: 100% !important;
    height: 250px !important;
    min-height: 250px !important;
    border-radius: 14px !important;
}

.site-footer .footer-map-button {
    margin-top: 6px !important;
}

@media (max-width: 1100px) {
    .site-footer .footer-container {
        max-width: 100% !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .site-footer .footer-grid-main {
        grid-template-columns: 0.9fr 0.9fr !important;
    }

    .site-footer .footer-map-col {
        grid-column: 1 / -1 !important;
    }

    .site-footer .footer-mini-map iframe {
        height: 240px !important;
        min-height: 240px !important;
    }
}

@media (max-width: 760px) {
    .site-footer .footer-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .site-footer .footer-grid-main {
        grid-template-columns: 1fr !important;
    }

    .site-footer .footer-map-col {
        grid-column: auto !important;
    }

    .site-footer .footer-mini-map iframe {
        height: 220px !important;
        min-height: 220px !important;
    }
}

/* Footer maximized compact layout - final override */
.site-footer {
    padding: 34px 0 16px;
}

.footer-grid-main {
    grid-template-columns: 1fr 1fr 1.8fr 1fr;
    gap: 28px;
    align-items: start;
}

.footer-brand-col p,
.site-footer .footer-grid p,
.footer-map-col p {
    margin-top: 6px;
    margin-bottom: 5px;
    line-height: 1.38 !important;
}

.footer-grid h4 {
    margin-bottom: 7px;
}

.footer-grid h4:not(:first-child) {
    margin-top: 12px;
}

.important-numbers {
    gap: 7px;
}

.footer-mini-map {
    width: 100%;
    margin-top: 7px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.footer-mini-map:hover {
    transform: scale(1.01);
}

.footer-mini-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 12px;
}

.footer-map-button {
    margin-top: 6px;
}

.footer-bottom {
    margin-top: 14px;
    padding-top: 10px;
}

@media (max-width: 1100px) {
    .footer-grid-main {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-map-col {
        grid-column: 1 / -1;
    }

    .footer-mini-map iframe {
        height: 200px;
    }
}

@media (max-width: 760px) {
    .site-footer {
        padding: 30px 0 16px;
    }

    .footer-grid-main {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-map-col {
        grid-column: auto;
    }

    .footer-mini-map iframe {
        height: 185px;
    }
}

/* Footer maximized compact layout */
.site-footer {
    padding: 34px 0 16px;
}

.footer-grid-main {
    grid-template-columns: 1fr 1fr 1.8fr 1fr;
    gap: 28px;
    align-items: start;
}

.footer-brand-col p,
.site-footer .footer-grid p,
.footer-map-col p {
    margin-top: 6px;
    margin-bottom: 5px;
    line-height: 1.38 !important;
}

.footer-grid h4 {
    margin-bottom: 7px;
}

.footer-grid h4:not(:first-child) {
    margin-top: 12px;
}

.footer-socials {
    margin-top: 8px;
}

.important-numbers {
    gap: 7px;
}

.footer-mini-map {
    width: 100%;
    margin-top: 7px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.footer-mini-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 12px;
}

.footer-map-button {
    margin-top: 6px;
}

.footer-bottom {
    margin-top: 14px;
    padding-top: 10px;
}

@media (max-width: 1100px) {
    .footer-grid-main {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-map-col {
        grid-column: 1 / -1;
    }

    .footer-mini-map iframe {
        height: 200px;
    }
}

@media (max-width: 760px) {
    .site-footer {
        padding: 30px 0 16px;
    }

    .footer-grid-main {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-map-col {
        grid-column: auto;
    }

    .footer-mini-map iframe {
        height: 185px;
    }
}

/* Footer final layout polish */
.site-footer {
    padding: 52px 0 34px;
}

.site-footer .container {
    width: min(calc(100% - 40px), 1380px);
}

.footer-grid-main {
    grid-template-columns: minmax(240px, 1.12fr) minmax(220px, 0.92fr) minmax(260px, 1.08fr) minmax(210px, 0.88fr);
    gap: clamp(24px, 3vw, 46px);
    align-items: start;
}

.footer-brand-col,
.site-footer .footer-grid-main > div {
    min-width: 0;
}

.footer-logo {
    width: 168px;
}

.footer-brand-col p,
.site-footer .footer-grid p,
.site-footer .footer-grid a,
.important-numbers span {
    color: #d9f5e6;
}

.footer-brand-col p,
.site-footer .footer-grid p {
    margin: 12px 0 0;
    font-size: 0.98rem;
    line-height: 1.7;
}

.footer-grid h4 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.25;
}

.footer-grid h4:not(:first-child) {
    margin-top: 22px;
}

.footer-socials {
    margin-top: 18px;
    gap: 12px;
}

.footer-socials a {
    color: #d9f5e6 !important;
    font-size: 0.96rem !important;
    font-weight: 700;
}

.footer-socials a:hover {
    color: #ffffff !important;
}

.important-numbers {
    gap: 12px;
}

.important-numbers div {
    display: grid;
    gap: 2px;
}

.important-numbers span {
    font-size: 0.92rem;
    line-height: 1.3;
}

.important-numbers strong {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.3;
}

.footer-map-col p {
    margin: 0 0 12px;
    color: #d9f5e6;
    font-size: 0.95rem;
    line-height: 1.55;
}

.footer-mini-map {
    margin-top: 12px;
    border-radius: 12px;
    border: 0;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.footer-mini-map iframe {
    height: 178px;
}

.footer-map-button {
    min-height: 40px;
    margin-top: 14px;
    padding: 0 16px;
    font-size: 0.94rem !important;
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
    color: #d9f5e6;
}

.feedback-widget {
    bottom: 28px;
}

@media (max-width: 1100px) {
    .footer-grid-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-footer {
        padding: 42px 0 30px;
    }

    .site-footer .container {
        width: calc(100% - 24px);
    }

    .footer-grid-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-mini-map iframe {
        height: 170px;
    }

    .feedback-widget {
        right: 18px;
        bottom: 26px;
    }
}

/* Compact footer final */
.site-footer {
    padding: 36px 0 22px;
}

.footer-grid-main {
    grid-template-columns: minmax(210px, 1.05fr) minmax(190px, 0.92fr) minmax(250px, 1.08fr) minmax(180px, 0.8fr);
    gap: clamp(18px, 2.4vw, 34px);
}

.footer-logo {
    width: 145px;
}

.footer-brand-col p,
.site-footer .footer-grid p,
.site-footer .footer-grid a,
.important-numbers span {
    color: #d9f5e6;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
}

.footer-brand-col p,
.site-footer .footer-grid p {
    margin: 8px 0 0;
}

.footer-grid h4 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1.2;
}

.footer-grid h4:not(:first-child) {
    margin-top: 14px;
}

.footer-socials {
    margin-top: 10px;
    gap: 8px;
}

.footer-socials a {
    font-size: 0.88rem !important;
    line-height: 1.2 !important;
}

.important-numbers {
    gap: 8px;
}

.important-numbers div {
    gap: 1px;
}

.important-numbers strong {
    color: #ffffff;
    font-size: 0.94rem;
    line-height: 1.2;
}

.footer-map-col p {
    margin: 0 0 8px;
    font-size: 0.88rem;
    line-height: 1.4;
}

.footer-mini-map {
    margin-top: 8px;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.footer-mini-map iframe {
    height: 130px;
}

.footer-map-button {
    min-height: 32px;
    margin-top: 8px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.82rem !important;
}

.footer-bottom {
    margin-top: 16px;
    padding-top: 12px;
    font-size: 0.86rem;
    line-height: 1.3;
}

.feedback-widget {
    bottom: 20px;
}

@media (max-width: 1100px) {
    .footer-grid-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-footer {
        padding: 32px 0 20px;
    }

    .footer-grid-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-mini-map iframe {
        height: 130px;
    }

    .feedback-widget {
        bottom: 20px;
    }
}

/* Footer premium compact layout - final override */
.site-footer {
    padding: 32px 0 14px !important;
    color: #e7fff1 !important;
    background:
        radial-gradient(circle at 12% 10%, rgba(34, 197, 94, 0.16), transparent 28%),
        radial-gradient(circle at 72% 20%, rgba(20, 184, 166, 0.13), transparent 26%),
        linear-gradient(135deg, #063d23 0%, #07542f 100%) !important;
}

.site-footer .footer-container {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: clamp(38px, 4.2vw, 76px) !important;
    padding-left: clamp(38px, 4.2vw, 76px) !important;
    box-sizing: border-box !important;
}

.site-footer .footer-grid-main {
    display: grid !important;
    grid-template-columns: 1.05fr 1.15fr 2.7fr 1.35fr !important;
    gap: clamp(24px, 2vw, 34px) !important;
    align-items: start !important;
}

.site-footer .footer-col {
    min-width: 0 !important;
}

.site-footer .footer-grid-main > .footer-col:not(:first-child) {
    padding-left: clamp(18px, 1.6vw, 28px) !important;
    border-left: 1px solid rgba(217, 245, 230, 0.2) !important;
}

.site-footer .footer-logo {
    max-width: 170px !important;
    height: auto !important;
}

.site-footer .footer-grid h4 {
    margin: 0 0 9px !important;
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
}

.site-footer .footer-grid h4:not(:first-child) {
    margin-top: 14px !important;
}

.site-footer .footer-brand-col p,
.site-footer .footer-grid p,
.site-footer .footer-map-col p {
    margin: 8px 0 10px !important;
    color: #d9f5e6 !important;
    font-size: 15px !important;
    line-height: 1.42 !important;
}

.site-footer .footer-info-line,
.site-footer .footer-hours {
    display: flex !important;
    align-items: flex-start !important;
    gap: 9px !important;
}

.site-footer .footer-icon {
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #6ee79d !important;
    background: rgba(110, 231, 157, 0.13) !important;
    border-radius: 11px !important;
}

.site-footer .footer-icon svg {
    width: 20px !important;
    height: 20px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.site-footer .footer-icon-danger {
    color: #ff7b68 !important;
    background: rgba(255, 123, 104, 0.14) !important;
}

.site-footer .footer-social-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 18px !important;
}

.site-footer .footer-social-pills a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-height: 34px !important;
    padding: 8px 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: transform 0.2s ease, background-color 0.2s ease !important;
}

.site-footer .footer-social-pills a:hover {
    background: rgba(255, 255, 255, 0.16) !important;
    transform: translateY(-1px) !important;
}

.site-footer .footer-social-pills svg {
    width: 18px !important;
    height: 18px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.site-footer .footer-map-col {
    min-width: 0 !important;
}

.site-footer .footer-mini-map {
    width: 100% !important;
    margin-top: 10px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.site-footer .footer-mini-map:hover {
    transform: scale(1.01) !important;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28) !important;
}

.site-footer .footer-mini-map iframe {
    display: block !important;
    width: 100% !important;
    height: 175px !important;
    min-height: 175px !important;
    border: 0 !important;
    border-radius: 14px !important;
}

.site-footer .footer-map-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    min-height: 38px !important;
    margin-top: 10px !important;
    padding: 9px 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #16a35a, #0c7a42) !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18) !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.site-footer .footer-map-button:hover {
    transform: translateY(-1px) !important;
    background: linear-gradient(135deg, #1bbd68, #0f8f4d) !important;
}

.site-footer .footer-map-button svg {
    width: 18px !important;
    height: 18px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.site-footer .important-numbers {
    display: grid !important;
    gap: 14px !important;
}

.site-footer .important-numbers div {
    display: grid !important;
    grid-template-columns: 44px 1fr !important;
    column-gap: 12px !important;
    align-items: center !important;
    padding: 10px 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.13) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.07) !important;
}

.site-footer .important-numbers div > .footer-icon {
    grid-row: 1 / span 2 !important;
}

.site-footer .important-numbers span:not(.footer-icon) {
    color: #d9f5e6 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
}

.site-footer .important-numbers strong {
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
}

.site-footer .footer-bottom {
    margin-top: 18px !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(217, 245, 230, 0.18) !important;
    justify-content: flex-start !important;
    text-align: left !important;
}

.site-footer .footer-bottom span {
    color: #e7fff1 !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
}

.feedback-widget {
    bottom: 22px !important;
}

@media (max-width: 1100px) {
    .site-footer .footer-grid-main {
        grid-template-columns: 1fr 1fr !important;
        gap: 22px !important;
    }

    .site-footer .footer-grid-main > .footer-col:not(:first-child) {
        padding-left: 0 !important;
        border-left: 0 !important;
    }

    .site-footer .footer-map-col {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 760px) {
    .site-footer {
        padding: 28px 0 14px !important;
    }

    .site-footer .footer-container {
        padding-right: 18px !important;
        padding-left: 18px !important;
    }

    .site-footer .footer-grid-main {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .site-footer .footer-map-col {
        grid-column: auto !important;
    }

    .site-footer .footer-mini-map iframe {
        height: 165px !important;
        min-height: 165px !important;
    }
}

/* Requested home/footer/profile adjustments */
.home-reference-main {
    padding: 26px 0 34px !important;
}

.home-reference-top {
    display: block !important;
}

.home-reference-hero {
    width: 100% !important;
    min-height: 430px !important;
    border-radius: 20px !important;
}

.home-reference-hero-content {
    min-height: 430px !important;
    max-width: 720px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 42px 34px !important;
}

.home-reference-hero h1 {
    max-width: 680px !important;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28) !important;
}

.home-reference-eyebrow {
    color: #d2f0d8 !important;
}

.site-footer .footer-grid-main {
    grid-template-columns: minmax(240px, 1.05fr) minmax(230px, 1fr) minmax(360px, 2.6fr) !important;
}

.site-footer .footer-mini-map iframe {
    height: 205px !important;
    min-height: 205px !important;
}

.profile-important-section {
    scroll-margin-top: 110px;
    background:
        radial-gradient(circle at top right, rgba(22, 131, 74, 0.1), transparent 34%),
        #fff;
}

.profile-important-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.profile-important-card {
    min-height: 142px;
    padding: 20px;
    border: 1px solid rgba(22, 131, 74, 0.12);
    border-radius: 18px;
    background: linear-gradient(135deg, #f6fcf8, #fff);
    box-shadow: 0 12px 30px rgba(16, 82, 44, 0.07);
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-important-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(16, 82, 44, 0.11);
}

.profile-important-card div {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 15px;
    background: #e8f6ee;
    color: #16834a;
    display: grid;
    place-items: center;
}

.profile-important-card div.is-danger {
    color: #c24130;
    background: #fff1ee;
}

.profile-important-card svg {
    width: 22px;
    height: 22px;
}

.profile-important-card span,
.profile-important-card strong {
    display: block;
}

.profile-important-card span {
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.3;
}

.profile-important-card strong {
    margin-top: 6px;
    color: #111827;
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    line-height: 1.25;
}

@media (max-width: 1100px) {
    .site-footer .footer-grid-main {
        grid-template-columns: 1fr 1fr !important;
    }

    .profile-important-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .home-reference-main {
        padding: 18px 0 26px !important;
    }

    .home-reference-hero,
    .home-reference-hero-content {
        min-height: 360px !important;
    }

    .home-reference-hero-content {
        padding: 30px 22px !important;
    }

    .site-footer .footer-grid-main,
    .profile-important-grid {
        grid-template-columns: 1fr !important;
    }

    .site-footer .footer-mini-map iframe {
        height: 175px !important;
        min-height: 175px !important;
    }
}

/* Screenshot-match compact home and global footer */
@media (min-width: 901px) {
    .site-header {
        min-height: 72px !important;
        padding: 8px 0 !important;
    }

    .site-header .container-header {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 8px !important;
        padding-right: 14px !important;
    }

    .brand-logo {
        width: 118px !important;
        max-height: 42px !important;
        object-fit: contain !important;
    }

    .main-nav {
        gap: 28px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .main-nav > a,
    .nav-dropdown-label {
        font-size: 11px !important;
        line-height: 1.2 !important;
        font-weight: 800 !important;
        padding: 8px 0 !important;
    }

    .header-link {
        width: 30px !important;
        height: 30px !important;
        flex: 0 0 30px !important;
    }

    .header-link svg {
        width: 15px !important;
        height: 15px !important;
    }
}

body.home-reference-page {
    background: #ffffff !important;
}

.home-reference-main {
    min-height: 258px !important;
    padding: 14px 0 30px !important;
    display: flex !important;
    align-items: flex-start !important;
}

.home-reference-container {
    width: min(100% - 40px, 740px) !important;
    margin: 0 auto !important;
}

.home-reference-top {
    display: block !important;
}

.home-reference-hero {
    width: 100% !important;
    min-height: 215px !important;
    height: 215px !important;
    border-radius: 8px !important;
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.1) !important;
}

.home-reference-hero-content {
    min-height: 215px !important;
    max-width: 360px !important;
    padding: 58px 18px 28px !important;
    justify-content: flex-start !important;
}

.home-reference-eyebrow {
    font-size: 9px !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
}

.home-reference-hero h1 {
    max-width: 320px !important;
    margin-top: 7px !important;
    font-size: 32px !important;
    line-height: 1.04 !important;
    letter-spacing: 0 !important;
}

.home-reference-hero-overlay {
    background: linear-gradient(90deg, rgba(4, 20, 11, 0.8) 0%, rgba(4, 20, 11, 0.58) 34%, rgba(4, 20, 11, 0.1) 78%) !important;
}

.site-footer {
    margin-top: 0 !important;
    padding: 16px 0 0 !important;
    background: #07572f !important;
}

.site-footer .footer-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 38px !important;
    padding-right: 38px !important;
}

.site-footer .footer-grid-main {
    grid-template-columns: 280px 260px minmax(520px, 1fr) !important;
    gap: 34px !important;
    align-items: start !important;
}

.site-footer .footer-grid-main > .footer-col:not(:first-child) {
    padding-left: 14px !important;
    border-left: 1px solid rgba(217, 245, 230, 0.28) !important;
}

.site-footer .footer-logo {
    width: 96px !important;
    max-width: 96px !important;
}

.site-footer .footer-brand-col p,
.site-footer .footer-grid p,
.site-footer .footer-map-col p {
    margin: 8px 0 8px !important;
    font-size: 10px !important;
    line-height: 1.5 !important;
}

.site-footer .footer-grid h4 {
    margin-bottom: 7px !important;
    font-size: 12px !important;
}

.site-footer .footer-grid h4:not(:first-child) {
    margin-top: 10px !important;
}

.site-footer .footer-info-line,
.site-footer .footer-hours {
    gap: 6px !important;
}

.site-footer .footer-icon {
    width: 18px !important;
    height: 18px !important;
    flex-basis: 18px !important;
    border-radius: 6px !important;
}

.site-footer .footer-icon svg {
    width: 12px !important;
    height: 12px !important;
}

.site-footer .footer-social-pills {
    gap: 7px !important;
    margin-top: 14px !important;
}

.site-footer .footer-social-pills a {
    min-height: 23px !important;
    padding: 5px 10px !important;
    gap: 5px !important;
    font-size: 10px !important;
    line-height: 1 !important;
}

.site-footer .footer-social-pills svg {
    width: 11px !important;
    height: 11px !important;
}

.site-footer .footer-mini-map {
    margin-top: 8px !important;
    border-radius: 7px !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18) !important;
}

.site-footer .footer-mini-map iframe {
    height: 102px !important;
    min-height: 102px !important;
    border-radius: 7px !important;
}

.site-footer .footer-map-button {
    min-height: 23px !important;
    margin-top: 8px !important;
    padding: 5px 13px !important;
    gap: 5px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    box-shadow: none !important;
}

.site-footer .footer-map-button svg {
    width: 11px !important;
    height: 11px !important;
}

.site-footer .footer-bottom {
    margin-top: 12px !important;
    padding-top: 8px !important;
    padding-bottom: 9px !important;
    background: rgba(0, 0, 0, 0.06) !important;
}

.site-footer .footer-bottom span {
    font-size: 10px !important;
}

.feedback-widget {
    right: 14px !important;
    bottom: 12px !important;
}

.feedback-trigger {
    min-height: 36px !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
}

@media (max-width: 1100px) {
    .site-footer .footer-grid-main {
        grid-template-columns: 1fr 1fr !important;
    }

    .site-footer .footer-map-col {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 760px) {
    .home-reference-main {
        min-height: 0 !important;
        padding: 18px 0 52px !important;
    }

    .home-reference-container {
        width: calc(100% - 20px) !important;
    }

    .home-reference-hero {
        height: 360px !important;
        min-height: 360px !important;
        border-radius: 18px !important;
    }

    .home-reference-hero-content {
        min-height: 360px !important;
        max-width: 100% !important;
        padding: 128px 22px 26px !important;
    }

    .home-reference-eyebrow {
        font-size: 12px !important;
    }

    .home-reference-hero h1 {
        max-width: 300px !important;
        font-size: 34px !important;
    }

    .site-footer {
        padding-top: 28px !important;
    }

    .site-footer .footer-container {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .site-footer .footer-grid-main {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .site-footer .footer-grid-main > .footer-col:not(:first-child) {
        padding-left: 0 !important;
        border-left: 0 !important;
    }

    .site-footer .footer-logo {
        width: 128px !important;
        max-width: 128px !important;
    }

    .site-footer .footer-brand-col p,
    .site-footer .footer-grid p,
    .site-footer .footer-map-col p {
        font-size: 14px !important;
    }

    .site-footer .footer-grid h4 {
        font-size: 18px !important;
    }

    .site-footer .footer-social-pills a,
    .site-footer .footer-map-button {
        min-height: 38px !important;
        padding: 9px 14px !important;
        font-size: 14px !important;
    }

    .site-footer .footer-mini-map iframe {
        height: 170px !important;
        min-height: 170px !important;
    }
}

/* Final CMS hero guardrails: keep long operator-entered copy readable. */
.home-reference-hero .home-reference-hero-content {
    width: min(760px, 88%) !important;
    min-height: 100% !important;
    max-width: 760px !important;
    padding: 34px 40px !important;
    justify-content: center !important;
}

.home-reference-hero .home-reference-hero-content.is-tengah {
    margin-inline: auto !important;
}

.home-reference-hero .home-reference-hero-content.is-kanan {
    margin-left: auto !important;
}

.home-reference-hero .home-reference-hero-content h1 {
    max-width: 680px !important;
    font-size: clamp(34px, 4.5vw, 58px) !important;
    line-height: 1.02 !important;
}

.home-reference-slide.is-template-modern .home-reference-hero-content {
    margin-inline: auto !important;
    align-items: center !important;
    text-align: center !important;
}

.home-reference-slide.is-template-modern .home-reference-hero-content p {
    margin-inline: auto;
}

.home-reference-slide.is-template-minimalis .home-reference-hero-overlay {
    background: linear-gradient(90deg, rgba(3,31,17,.58), rgba(3,31,17,.08)) !important;
}

.home-reference-slide.is-template-minimalis .home-reference-hero-content {
    max-width: 620px !important;
}

.home-reference-slide.is-template-minimalis .home-reference-hero-content h1 {
    font-weight: 650 !important;
}

.home-cms-section {
    margin-top: 28px;
}

.home-quick-card .home-compact-card-body {
    min-height: 76px;
    display: flex;
    align-items: center;
}

.home-quick-card .home-compact-card-body h4 {
    margin: 0;
}

.home-quick-card .home-compact-card-image {
    height: 150px;
    min-height: 150px;
    overflow: hidden;
    background: #edf2ef;
}

.home-quick-card .home-compact-card-image img {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 760px) {
    .home-reference-hero {
        height: 380px !important;
        min-height: 380px !important;
    }

    .home-reference-slide {
        display: flex !important;
        align-items: stretch !important;
    }

    .home-reference-hero .home-reference-hero-content,
    .home-reference-hero .home-reference-hero-content.is-kanan {
        width: 92% !important;
        min-height: 100% !important;
        padding: 34px 22px !important;
        margin-inline: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .home-reference-hero .home-reference-hero-content h1 {
        max-width: 100% !important;
        margin-top: 0 !important;
        font-size: clamp(28px, 8.8vw, 36px) !important;
        line-height: 1.08 !important;
    }

    .home-reference-hero .home-reference-hero-content p {
        max-width: 100% !important;
        margin: 12px 0 0 !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
    }
}
