:root {
    --portal-primary: #0c3d36;
    --portal-primary-dark: #082e28;
    --portal-primary-deep: #051f1b;
    --portal-primary-soft: #d4e8e5;
    --portal-secondary: #0c3d36;
    --portal-secondary-soft: #d4e8e5;
    --portal-accent: #f59e0b;
    --portal-accent-soft: #fef3c7;
    --portal-success: #10b981;
    --portal-success-soft: #d1fae5;
    --portal-rose: #f43f5e;
    --portal-rose-soft: #ffe4e6;
    --portal-surface: #ffffff;
    --portal-muted: #64748b;
    --portal-text: #0f172a;
    --portal-bg: #f8fafc;
    --portal-border: #e2e8f0;
    --portal-shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --portal-shadow: 0 4px 20px rgba(0,0,0,.08);
    --portal-shadow-lg: 0 12px 48px rgba(0,0,0,.1);
    --portal-shadow-xl: 0 24px 64px rgba(0,0,0,.12);
    --portal-radius: 20px;
    --portal-radius-sm: 12px;
    --portal-radius-xs: 10px;
    --portal-transition: .25s cubic-bezier(.4,0,.2,1);
}

body {
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--portal-text);
    background: var(--portal-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.3;
    color: var(--portal-text);
}

a { color: var(--portal-primary); text-decoration: none; transition: var(--portal-transition); }
a:hover { color: var(--portal-primary-dark); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(.95); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes slideLeft {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
@keyframes fadeInUpHero {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}
@keyframes aurora-drift {
    0% { transform: translate(-30%, -30%) rotate(0deg); }
    50% { transform: translate(30%, 30%) rotate(180deg); }
    100% { transform: translate(-30%, -30%) rotate(360deg); }
}
@keyframes kadis-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes frame-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes aurora-pulse {
    0%, 100% { opacity: .15; }
    50% { opacity: .35; }
}

.utility-strip {
    background: linear-gradient(135deg, #0c3d36 0%, #0a2d28 100%);
    color: rgba(255,255,255,.88);
    font-size: .82rem;
    position: relative;
    overflow: hidden;
}
.utility-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(12,61,54,.08) 0%, transparent 60%);
    pointer-events: none;
}
.utility-strip-inner,
.utility-list {
    display: flex;
    align-items: center;
    gap: 18px;
}
.utility-strip-inner {
    justify-content: space-between;
    min-height: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.utility-list a,
.utility-list span {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.utility-list a:hover { color: #fff; }
.utility-list i { font-size: .75rem; }

.site-navbar {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s ease, border-color .25s ease;
    box-shadow: none;
}
.site-navbar.is-scrolled {
    border-bottom-color: var(--portal-border);
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    padding: 8px 0;
}
.navbar-brand strong {
    color: var(--portal-text);
    font-size: 1.05rem;
}
.navbar-brand small {
    display: block;
    color: var(--portal-muted);
    font-size: .7rem;
    font-weight: 500;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--portal-primary);
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(12,61,54,.25);
}

.nav-link {
    color: var(--portal-text);
    font-weight: 600;
    position: relative;
    padding: .5rem .85rem !important;
    border-radius: 8px;
    transition: var(--portal-transition);
    font-size: .92rem;
}
.nav-link.active,
.nav-link:hover {
    color: var(--portal-primary);
    background: rgba(12,61,54,.06);
}
.nav-link.active:after {
    content: '';
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: .15rem;
    height: 2px;
    border-radius: 999px;
    background: var(--portal-primary);
}

.btn {
    border-radius: 10px;
    font-weight: 600;
    padding: .6rem 1.5rem;
    transition: all .2s ease;
    border: none;
}
.btn-primary {
    background: var(--portal-primary);
    color: #fff;
    box-shadow: 0 3px 12px rgba(12,61,54,.3);
}
.btn-primary:hover {
    background: var(--portal-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12,61,54,.35);
}
.btn-outline-secondary {
    border: 2px solid var(--portal-border);
    color: var(--portal-text);
    background: transparent;
}
.btn-outline-secondary:hover {
    border-color: var(--portal-primary);
    color: var(--portal-primary);
    background: rgba(12,61,54,.04);
}
.btn-lg { padding: .75rem 2rem; border-radius: 12px; }
.btn-sm { padding: .4rem 1rem; border-radius: 8px; }

/* ===== HERO SECTION (PASADA-style) ===== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #1a2a3a;
}

.aurora-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .12;
    animation: aurora-drift 20s ease-in-out infinite;
}
.aurora-blob:nth-child(1) {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(12,61,54,.4), transparent);
    top: -20%; left: -10%;
    animation-duration: 25s;
}
.aurora-blob:nth-child(2) {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(12,61,54,.3), transparent);
    bottom: -20%; right: -10%;
    animation-duration: 20s;
    animation-delay: -5s;
}
.aurora-blob:nth-child(3) {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(16,185,129,.25), transparent);
    top: 30%; left: 50%;
    animation-duration: 18s;
    animation-delay: -10s;
}

.hero-background-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1.2s ease, transform 8s ease;
    will-change: opacity, transform;
}
.hero-bg-img.active {
    opacity: 1;
    transform: scale(1.08);
}
.hero-bg-img:not(.active) {
    opacity: 0;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(26,42,58,.88) 0%,
        rgba(26,42,58,.55) 50%,
        rgba(26,42,58,.3) 100%
    );
    z-index: 2;
}
.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(12,61,54,.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 60%, rgba(12,61,54,.04) 0%, transparent 60%);
    pointer-events: none;
}
.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(0deg, rgba(26,42,58,1) 0%, transparent 100%);
    z-index: 3;
}

.hero-main-content {
    position: relative;
    z-index: 4;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 100px 0 40px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-text-content {
    flex: 1;
    max-width: 620px;
}
.hero-text-content .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.5);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: .35rem 1rem;
    border-radius: 999px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,.06);
}
.hero-text-content .hero-kicker i { color: rgba(255,255,255,.3); font-size: .65rem; }

.hero-title {
    margin: 0 0 16px;
    line-height: 1.1;
}
.hero-title .shiny-text {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 900;
    letter-spacing: -.03em;
    color: #fff;
}

.hero-subtitle {
    color: rgba(255,255,255,.6);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 28px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.hero-actions .btn-primary {
    background: var(--portal-primary);
    box-shadow: 0 4px 24px rgba(12,61,54,.35);
    padding: .7rem 2rem;
    border-radius: 50px;
    font-size: .9rem;
}
.hero-actions .btn-primary:hover {
    box-shadow: 0 8px 32px rgba(12,61,54,.45);
    transform: translateY(-2px);
}
.hero-actions .btn-hero-outline {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
    padding: .7rem 2rem;
    border-radius: 50px;
    font-size: .9rem;
}
.hero-actions .btn-hero-outline:hover {
    background: rgba(255,255,255,.14);
    color: #fff;
    border-color: rgba(255,255,255,.25);
    transform: translateY(-2px);
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: .35rem .9rem;
    font-weight: 500;
    font-size: .72rem;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.06);
}
.hero-chip i { font-size: .65rem; color: rgba(255,255,255,.3); }

.hero-image-group {
    position: relative;
    width: 420px;
    height: 420px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: kadis-float 4s ease-in-out infinite;
}

.hero-officials-img {
    position: relative;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 80px rgba(0,0,0,.3), 0 0 60px rgba(12,61,54,.08);
    z-index: 2;
}
.hero-officials-placeholder {
    position: relative;
    z-index: 2;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(12,61,54,.08);
    border: 3px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 24px 80px rgba(0,0,0,.3);
}
.hero-officials-img[src]:not([style*="display"]) ~ .hero-officials-placeholder {
    display: none;
}
.hero-officials-placeholder .initials {
    font-size: 2.5rem;
    font-weight: 800;
    opacity: .9;
}
.hero-officials-placeholder .role-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .6;
}
.hero-officials-placeholder .name-label {
    font-size: .75rem;
    opacity: .8;
    margin-top: 4px;
}

.hero-decorative-frames {
    position: absolute;
    width: 380px;
    height: 380px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.hero-decorative-frames .frame-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(12,61,54,.15), rgba(12,61,54,.1), rgba(12,61,54,.05), rgba(12,61,54,.1), rgba(12,61,54,.15));
    animation: frame-spin 12s linear infinite;
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px), #000 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px), #000 100%);
}
.hero-decorative-frames .frame-1::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: conic-gradient(from 90deg, transparent, rgba(12,61,54,.08), transparent, rgba(12,61,54,.06), transparent);
    animation: frame-spin 20s linear infinite reverse;
    mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #000 calc(100% - 1px), #000 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #000 calc(100% - 1px), #000 100%);
}
.hero-decorative-frames .frame-2 {
    position: absolute;
    width: 62%;
    height: 62%;
    top: 19%;
    left: 19%;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.12),
        0 8px 40px rgba(0,0,0,.1);
    animation: frame-diamond 16s ease-in-out infinite;
}
.hero-decorative-frames .frame-2::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 25px;
    background: rgba(12,61,54,.08);
    z-index: -1;
    animation: frame-glow 4s ease-in-out infinite alternate;
}
.hero-decorative-frames .frame-2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    height: 40%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12,61,54,.06) 0%, transparent 70%);
    animation: frame-pulse 3s ease-in-out infinite;
}

@keyframes frame-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes frame-diamond {
    0%, 100% { transform: rotate(-3deg) scale(1); border-radius: 24px; }
    25% { transform: rotate(2deg) scale(1.02); border-radius: 32px; }
    50% { transform: rotate(-1deg) scale(.98); border-radius: 28px; }
    75% { transform: rotate(3deg) scale(1.01); border-radius: 20px; }
}
@keyframes frame-glow {
    0% { opacity: .4; }
    100% { opacity: .8; }
}
@keyframes frame-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .3; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: .6; }
}

.hero-slider-nav {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.2);
    cursor: pointer;
    padding: 0;
    transition: all .4s cubic-bezier(.4,0,.2,1);
}
.slider-dot:hover { background: rgba(255,255,255,.4); }
.slider-dot.active {
    background: #fff;
    width: 32px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255,255,255,.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255,255,255,.5);
    font-size: 1rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all .25s ease;
    opacity: 0;
}
.hero-section:hover .slider-arrow { opacity: 1; }
.slider-arrow:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.slider-arrow-prev { left: 24px; }
.slider-arrow-next { right: 24px; }

/* ===== STAT STRIP ===== */
.hero-stat-strip {
    position: relative;
    z-index: 5;
    padding: 24px 0 40px;
    margin-top: -60px;
}
.hero-stat-strip .container { max-width: 1100px; }
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.stat-card {
    background: #fff;
    border: 1px solid var(--portal-border);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--portal-shadow-sm);
    transition: all .35s cubic-bezier(.4,0,.2,1);
}
.stat-card:hover {
    box-shadow: var(--portal-shadow);
    transform: translateY(-4px);
    border-color: rgba(12,61,54,.2);
}
.stat-card strong {
    display: block;
    font-size: 1.8rem;
    color: var(--portal-text);
    line-height: 1.15;
    margin-bottom: 2px;
    font-weight: 800;
}
.stat-card span {
    font-size: .72rem;
    color: var(--portal-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ===== SECTION BLOCK ===== */
.section-block {
    padding: 64px 0;
    position: relative;
}
.section-block-soft {
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
    position: relative;
}
.section-block-soft::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12,61,54,.035) 0%, transparent 60%);
    transform: translate(-50%, 0);
    pointer-events: none;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--portal-primary-dark);
    font-size: .68rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    background: var(--portal-primary-soft);
    padding: .3rem .9rem;
    border-radius: 6px;
    border: 1px solid rgba(12,61,54,.08);
}
.section-kicker i { font-size: .65rem; }
.section-kicker ~ h1,
.section-kicker ~ h2,
.section-kicker ~ h3,
.section-kicker ~ h4,
.section-kicker ~ h5,
.section-kicker ~ h6 { display: none; }

.content-card {
    background: var(--portal-surface);
    border: 1px solid var(--portal-border);
    border-radius: var(--portal-radius-sm);
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    transition: all .35s cubic-bezier(.4,0,.2,1);
    padding: 22px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--portal-primary);
    border-radius: 0 0 3px 3px;
    opacity: 0;
    transition: opacity .35s ease;
}
.content-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04);
    border-color: rgba(12,61,54,.15);
}
.content-card:hover::before { opacity: 1; }
.content-card a { color: inherit; }
.content-card h3 a {
    color: var(--portal-text);
    transition: color .2s ease;
}
.content-card h3 a:hover { color: var(--portal-primary); }

.content-card-accent {
    position: relative;
    overflow: hidden;
}
.content-card-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--portal-primary);
    opacity: 0;
    transition: opacity .35s ease;
}
.content-card-accent:hover::before { opacity: 1; }

.section-panel {
    background: var(--portal-surface);
    border: 1px solid var(--portal-border);
    border-radius: var(--portal-radius);
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    transition: all .35s cubic-bezier(.4,0,.2,1);
    padding: 28px;
    height: 100%;
    position: relative;
}
.section-panel:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
    border-color: rgba(12,61,54,.1);
}

.surface-card {
    background: #f8fafc;
    border: 1px solid var(--portal-border);
    border-radius: var(--portal-radius-sm);
    padding: 24px;
    height: 100%;
    transition: all .35s cubic-bezier(.4,0,.2,1);
}
.surface-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    border-color: rgba(12,61,54,.1);
}

.icon-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    background: var(--portal-surface);
    border: 1px solid var(--portal-border);
    border-radius: var(--portal-radius-sm);
    transition: all .35s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.icon-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12,61,54,.03) 0%, transparent 70%);
    pointer-events: none;
    transition: all .5s ease;
    transform: translate(30%, -30%);
}
.icon-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.07), 0 4px 12px rgba(0,0,0,.03);
    border-color: rgba(12,61,54,.18);
    transform: translateY(-4px);
}
.icon-card:hover::after { transform: translate(30%, -30%) scale(2); }
.icon-card-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--portal-primary-soft);
    color: var(--portal-primary);
    font-size: 1.15rem;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    position: relative;
}
.icon-card:hover .icon-card-icon {
    background: var(--portal-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(12,61,54,.3);
    transform: scale(1.05) rotate(-3deg);
}
.icon-card-body { flex: 1; min-width: 0; }
.icon-card-body h3,
.icon-card-body h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 4px;
    transition: color .2s ease;
}
.icon-card:hover .icon-card-body h3 { color: var(--portal-primary); }
.icon-card-body p {
    font-size: .85rem;
    color: var(--portal-muted);
    margin: 0;
    line-height: 1.5;
}

.insight-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 36px 40px;
    border-radius: 28px;
    background: linear-gradient(145deg, #0c3d36 0%, #0a2d28 50%, #0f1a2e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.1);
    border: 1px solid rgba(255,255,255,.06);
}
.insight-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12,61,54,.1) 0%, transparent 60%);
    pointer-events: none;
}
.insight-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12,61,54,.06) 0%, transparent 60%);
    pointer-events: none;
}
.insight-banner .section-kicker { color: rgba(255,255,255,.5); background: none; padding: 0; border: none; }
.insight-banner h2 { color: #fff; margin: 0; position: relative; z-index: 1; }
.insight-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.insight-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: .5rem 1.1rem;
    font-weight: 600;
    font-size: .78rem;
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.08);
    transition: all .3s cubic-bezier(.4,0,.2,1);
    backdrop-filter: blur(4px);
    letter-spacing: .02em;
}
.insight-pill:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.page-hero {
    padding: 56px 0 24px;
    position: relative;
}
.page-hero h1 { margin-bottom: 8px; }
.page-hero .lead { color: var(--portal-muted); }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal-visible {
    opacity: 1;
    transform: none;
}

.site-footer {
    margin-top: 80px;
    background: linear-gradient(180deg, #0a2d28 0%, #071a17 100%);
    color: rgba(255,255,255,.8);
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12,61,54,.05) 0%, transparent 60%);
    transform: translateX(-50%);
    pointer-events: none;
}
.site-footer hr { border-color: rgba(255,255,255,.06); margin: 32px 0 20px; }
.site-footer h3, .site-footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.site-footer h3 { font-size: 1.1rem; }
.site-footer a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: var(--portal-transition);
}
.site-footer a:hover { color: #fff; }
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    position: relative;
    z-index: 1;
}
.footer-links li {
    display: flex;
    gap: 8px;
    font-size: .88rem;
}

.panel-card {
    background: var(--portal-surface);
    border: 1px solid var(--portal-border);
    border-radius: var(--portal-radius);
    box-shadow: var(--portal-shadow-sm);
    padding: 24px;
    transition: var(--portal-transition);
}
.panel-card:hover { box-shadow: var(--portal-shadow); }
.panel-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -.02em;
}
.panel-subtitle {
    color: var(--portal-muted);
    margin: 0;
    font-size: .88rem;
}

.badge {
    font-weight: 600;
    border-radius: 6px;
    padding: .3em .7em;
    font-size: .78rem;
}

.detail-header {
    padding: 48px 0 24px;
    background: #fff;
    border-bottom: 1px solid var(--portal-border);
}
.detail-header .detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    color: var(--portal-muted);
    font-size: .88rem;
    margin-top: 12px;
}
.detail-header .detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.detail-content {
    padding: 40px 0 60px;
}
.detail-content .content-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1e293b;
}
.detail-content .content-body p {
    margin-bottom: 1.2rem;
}
.detail-content .content-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--portal-radius-sm);
    margin: 24px 0;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--portal-surface);
    border: 1px solid var(--portal-border);
    border-radius: var(--portal-radius-sm);
    transition: all .35s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.download-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--portal-primary);
    opacity: 0;
    transition: opacity .35s ease;
}
.download-item:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.07), 0 4px 12px rgba(0,0,0,.03);
    border-color: rgba(12,61,54,.18);
    transform: translateY(-3px);
}
.download-item:hover::before { opacity: 1; }
.download-item .download-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--portal-primary-soft);
    color: var(--portal-primary);
    font-size: 1.2rem;
    transition: var(--portal-transition);
}
.download-item:hover .download-icon {
    background: var(--portal-primary);
    color: #fff;
}
.download-item .download-info { flex: 1; min-width: 0; }
.download-item .download-info h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.download-item .download-info p {
    font-size: .82rem;
    color: var(--portal-muted);
    margin: 0;
}
.download-item .download-info small {
    color: var(--portal-muted);
    font-size: .75rem;
}

/* ===== TRACKING & STATUS ===== */
.tracking-card {
    background: var(--portal-surface);
    border: 1px solid var(--portal-border);
    border-radius: var(--portal-radius-sm);
    padding: 16px 18px;
}
.status-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .25rem .75rem;
    font-weight: 700;
    font-size: .7rem;
    white-space: nowrap;
    letter-spacing: .03em;
}
.status-chip.status-pending { background: var(--portal-accent-soft); color: #92400e; }
.status-chip.status-proses { background: var(--portal-primary-soft); color: var(--portal-primary-deep); }
.status-chip.status-selesai { background: var(--portal-success-soft); color: #065f46; }
.status-chip.status-ditolak { background: var(--portal-rose-soft); color: #991b1b; }

.timeline-cards {
    position: relative;
}
.timeline-cards::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--portal-border);
    border-radius: 99px;
}
.timeline-card {
    display: flex;
    gap: 14px;
    padding: 10px 0;
    position: relative;
}
.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex: 0 0 24px;
    background: var(--portal-primary);
    border: 3px solid var(--portal-primary-soft);
    position: relative;
    z-index: 1;
}

/* ===== TABLE SHELL ===== */
.table-shell {
    border: 1px solid var(--portal-border);
    border-radius: var(--portal-radius-sm);
    overflow: hidden;
}
.table-shell .table {
    margin-bottom: 0;
}
.table-shell .table > :not(caption) > * > * {
    padding: .65rem .75rem;
    vertical-align: middle;
    border-bottom-color: var(--portal-border);
}
.table-shell .table thead th {
    background: var(--portal-bg);
    font-weight: 700;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--portal-muted);
    border-bottom: 2px solid var(--portal-border);
}
.table-shell .table tbody tr:hover {
    background: rgba(12,61,54,.025);
}
.table-shell .table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== PAGE HERO SECTION KICKER ===== */
.page-hero .section-kicker {
    margin-bottom: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .hero-section { min-height: auto; }
    .hero-content { flex-direction: column-reverse; text-align: center; gap: 24px; }
    .hero-text-content { max-width: 100%; }
    .hero-subtitle { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-chips { justify-content: center; }
    .hero-text-content .hero-kicker { align-self: center; }
    .hero-image-group { width: 260px; height: 260px; }
    .hero-decorative-frames { width: 240px; height: 240px; }
    .hero-officials-img,
    .hero-officials-placeholder { width: 160px; height: 160px; }
    .hero-officials-placeholder .initials { font-size: 1.6rem; }
    .hero-officials-placeholder .role-label { font-size: .55rem; }
    .hero-officials-placeholder .name-label { font-size: .65rem; }
    .hero-main-content { padding: 100px 0 20px; }
    .nav-link.active:after { display: none; }
    .insight-banner { flex-direction: column; align-items: flex-start; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stat-strip { margin-top: -40px; padding: 16px 0 32px; }
}

@media (max-width: 767.98px) {
    .utility-strip-inner,
    .utility-list { flex-direction: column; align-items: flex-start; }
    .hero-image-group { width: 200px; height: 200px; }
    .hero-decorative-frames { width: 180px; height: 180px; }
    .hero-officials-img,
    .hero-officials-placeholder { width: 120px; height: 120px; }
    .hero-officials-placeholder .initials { font-size: 1rem; }
    .hero-officials-placeholder .role-label { font-size: .5rem; }
    .hero-officials-placeholder .name-label { font-size: .55rem; }
    .hero-title .shiny-text { font-size: clamp(1rem, 4vw, 1.3rem); }
    .hero-subtitle { font-size: .92rem; }
    .section-block { padding: 36px 0; }
    .insight-banner { padding: 24px; }
    .slider-arrow { width: 36px; height: 36px; font-size: .85rem; }
    .slider-arrow-prev { left: 12px; }
    .slider-arrow-next { right: 12px; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-card { padding: 14px 12px; }
    .stat-card strong { font-size: 1.3rem; }
    .hero-stat-strip { margin-top: -24px; padding: 12px 0 24px; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-image-group { width: 340px; height: 340px; }
    .hero-decorative-frames { width: 300px; height: 300px; }
    .hero-officials-img,
    .hero-officials-placeholder { width: 200px; height: 200px; }
}

.card-modern {
    background: var(--portal-surface);
    border: 1px solid var(--portal-border);
    border-radius: var(--portal-radius-sm);
    padding: 24px;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--portal-primary);
    border-radius: 0 0 3px 3px;
    opacity: 0;
    transition: opacity .35s ease;
}
.card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,.08);
    border-color: rgba(12,61,54,.15);
}
.card-modern:hover::before { opacity: 1; }

.card-glass {
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: var(--portal-radius-sm);
    padding: 24px;
    transition: all .35s ease;
}
.card-glass:hover {
    background: rgba(255,255,255,.8);
    box-shadow: 0 16px 48px rgba(0,0,0,.06);
}

.card-gradient {
    background: var(--portal-primary-soft);
    border: 1px solid rgba(12,61,54,.1);
    border-radius: var(--portal-radius-sm);
    padding: 24px;
    transition: all .35s ease;
}
.card-gradient:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(12,61,54,.1);
}

.card-icon-round {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--portal-primary);
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(12,61,54,.25);
}
