/* ============================================================
   GLOBAL DESIGN SYSTEM — CORPORATE PROFILE WEBSITE
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
    /* Colors */
    --color-bg: #ffffff;
    --color-bg-soft: #f7f7f6;
    --color-bg-dark: #0d0d0d;
    --color-text: #111111;
    --color-text-muted: #6b6b6b;
    --color-text-light: #999999;
    --color-border: #e5e5e3;
    --color-border-dark: #2a2a2a;

    /* Accent — deep navy */
    --color-accent: #0f3557;
    --color-accent-mid: #1a5276;
    --color-accent-light: #d6e8f7;
    --color-accent-tint: #eef5fb;

    /* Semantic */
    --color-white: #ffffff;
    --color-black: #0d0d0d;

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-numeric: 'Inter', sans-serif;
    /* khusus angka — rapi & proporsional */

    /* Font Sizes */
    --fs-xs: 0.75rem;
    /* 12px */
    --fs-sm: 0.875rem;
    /* 14px */
    --fs-base: 1rem;
    /* 16px */
    --fs-md: 1.125rem;
    /* 18px */
    --fs-lg: 1.375rem;
    /* 22px */
    --fs-xl: 1.75rem;
    /* 28px */
    --fs-2xl: 2.25rem;
    /* 36px */
    --fs-3xl: 3rem;
    /* 48px */
    --fs-4xl: 3.75rem;
    /* 60px */
    --fs-5xl: 5rem;
    /* 80px */

    /* Spacing */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;
    --sp-32: 8rem;

    /* Layout */
    --container-max: 1200px;
    --container-wide: 1440px;
    --section-gap: var(--sp-24);

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadow */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur-fast: 160ms;
    --dur-base: 260ms;
    --dur-slow: 480ms;

    /* Z-index */
    --z-base: 1;
    --z-raised: 10;
    --z-nav: 100;
    --z-modal: 1000;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
video,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ── Typography System ── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

h1 {
    font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl));
}

h2 {
    font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl));
}

h3 {
    font-size: clamp(var(--fs-xl), 2.5vw, var(--fs-3xl));
}

h4 {
    font-size: clamp(var(--fs-lg), 2vw, var(--fs-2xl));
}

h5 {
    font-size: var(--fs-lg);
}

h6 {
    font-size: var(--fs-md);
}

p {
    font-size: var(--fs-base);
    line-height: 1.75;
    color: var(--color-text-muted);
}

.lead {
    font-size: clamp(var(--fs-md), 1.5vw, var(--fs-lg));
    line-height: 1.65;
    color: var(--color-text-muted);
    font-weight: 300;
}

.label {
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.label--light {
    color: var(--color-accent-light);
}

/* ── Layout ── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: clamp(var(--sp-6), 5vw, var(--sp-12));
}

.container--wide {
    max-width: var(--container-wide);
}

.section {
    padding-block: var(--section-gap);
}

.section--sm {
    padding-block: var(--sp-16);
}

.section--lg {
    padding-block: calc(var(--section-gap) * 1.5);
}

.section--dark {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
}

.section--soft {
    background-color: var(--color-bg-soft);
}

/* Grid */
.grid {
    display: grid;
    gap: var(--sp-8);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-auto-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-auto-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Flex */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-4 {
    gap: var(--sp-4);
}

.gap-6 {
    gap: var(--sp-6);
}

.gap-8 {
    gap: var(--sp-8);
}

/* ── Section Header ── */
.section-header {
    margin-bottom: var(--sp-16);
}

.section-header--center {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: var(--sp-16);
}

.section-header .label {
    display: block;
    margin-bottom: var(--sp-3);
}

.section-header h2 {
    margin-bottom: var(--sp-4);
}

.section-header p {
    font-size: var(--fs-md);
}

/* ── Button System ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 0.875rem 2rem;
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: all var(--dur-base) var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background var(--dur-fast) var(--ease);
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.06);
}

/* Primary */
.btn--primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 2px 12px rgba(15, 53, 87, 0.20);
}

.btn--primary:hover {
    background: var(--color-accent-mid);
    box-shadow: 0 4px 20px rgba(15, 53, 87, 0.30);
    transform: translateY(-1px);
}

.btn--primary:active {
    transform: translateY(0);
}

/* Secondary / Outline */
.btn--secondary {
    background: transparent;
    color: var(--color-accent);
    border: 1.5px solid var(--color-accent);
}

.btn--secondary:hover {
    background: var(--color-accent-tint);
    transform: translateY(-1px);
}

/* Ghost (dark bg) */
.btn--ghost {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* Text link button */
.btn--text {
    padding: 0;
    color: var(--color-accent);
    font-size: var(--fs-sm);
    font-weight: 600;
    gap: var(--sp-2);
    letter-spacing: 0.01em;
}

.btn--text svg {
    transition: transform var(--dur-base) var(--ease-spring);
}

.btn--text:hover svg {
    transform: translateX(4px);
}

/* Large */
.btn--lg {
    padding: 1.125rem 2.5rem;
    font-size: var(--fs-base);
}

/* Arrow icon */
.btn .arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--dur-base) var(--ease-spring);
}

.btn:hover .arrow {
    transform: translateX(3px);
}

/* ── Card System ── */
.card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-8);
    transition: all var(--dur-slow) var(--ease);
}

.card:hover {
    border-color: var(--color-accent-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card--flat {
    box-shadow: none;
}

.card--dark {
    background: #161616;
    border-color: var(--color-border-dark);
    color: var(--color-white);
}

.card--dark:hover {
    border-color: var(--color-accent-mid);
    box-shadow: 0 12px 40px rgba(15, 53, 87, 0.25);
}

.card--soft {
    background: var(--color-bg-soft);
    border: none;
}

.card--accent {
    background: var(--color-accent);
    border: none;
    color: var(--color-white);
}

.card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-tint);
    border-radius: var(--radius-md);
    margin-bottom: var(--sp-6);
    flex-shrink: 0;
}

.card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.card__tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: var(--color-accent-tint);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: var(--sp-4);
}

.card h3,
.card h4 {
    margin-bottom: var(--sp-3);
}

.card p {
    font-size: var(--fs-sm);
    line-height: 1.7;
}

/* ── Navbar ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: var(--sp-6) 0;
    transition: all var(--dur-base) var(--ease);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--sp-4) 0;
    box-shadow: 0 1px 0 var(--color-border), var(--shadow-sm);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-8);
}

.nav__logo {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-text);
    flex-shrink: 0;
}

.nav__logo span {
    color: var(--color-accent);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
}

.nav__links a {
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.01em;
    transition: color var(--dur-fast) var(--ease);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-accent);
    transition: width var(--dur-base) var(--ease-out);
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--color-text);
}

.nav__links a:hover::after,
.nav__links a.active::after {
    width: 100%;
}

.nav__cta {
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--sp-2);
    cursor: pointer;
    z-index: calc(var(--z-nav) + 1);
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--dur-base) var(--ease);
    transform-origin: center;
}

.nav__toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav__toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-white);
    z-index: calc(var(--z-nav) - 1);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-8);
    padding: var(--sp-8);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-base) var(--ease);
}

.nav__mobile.open {
    opacity: 1;
    pointer-events: all;
}

.nav__mobile a {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
    transition: color var(--dur-fast);
}

.nav__mobile a:hover {
    color: var(--color-accent);
}

/* ── Footer ── */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: var(--sp-20);
    padding-bottom: var(--sp-10);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--sp-12);
    padding-bottom: var(--sp-16);
    border-bottom: 1px solid var(--color-border-dark);
    margin-bottom: var(--sp-10);
}

.footer__brand .nav__logo {
    color: var(--color-white);
    margin-bottom: var(--sp-4);
    display: block;
}

.footer__brand p {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer__col h5 {
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--sp-6);
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer__col ul a {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--dur-fast);
}

.footer__col ul a:hover {
    color: var(--color-white);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

.footer__bottom p {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.3);
}

.footer__social {
    display: flex;
    gap: var(--sp-4);
}

.footer__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.4);
    transition: all var(--dur-fast);
}

.footer__social a:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.footer__social svg {
    width: 16px;
    height: 16px;
}

/* ── Form Elements ── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.form-group label {
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--color-bg);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: var(--fs-base);
    font-family: var(--font-body);
    transition: border-color var(--dur-fast) var(--ease);
    outline: none;
}

.form-control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-tint);
}

.form-control::placeholder {
    color: var(--color-text-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* ── Tags / Badges ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
}

.badge--accent {
    background: var(--color-accent-tint);
    color: var(--color-accent);
}

.badge--dark {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

/* ── Stats ── */
.stat {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
}

.stat__number {
    font-family: var(--font-numeric);
    font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl));
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--color-text);
    line-height: 1;
}

.stat__number span {
    color: var(--color-accent);
}

.stat__label {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    font-weight: 400;
}

.stat__divider {
    width: 32px;
    height: 2px;
    background: var(--color-accent);
    margin-top: var(--sp-2);
}

/* ── Divider ── */
.divider {
    width: 48px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    margin-top: var(--sp-4);
}

/* ── Image Containers ── */
.img-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-bg-soft);
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease);
}

.img-container:hover img {
    transform: scale(1.03);
}

/* ── Page Hero ── */
.page-hero {
    padding-top: calc(var(--sp-32) + 80px);
    padding-bottom: var(--sp-24);
    background: var(--color-bg-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15, 53, 87, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--color-white);
    margin-bottom: var(--sp-6);
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--dur-slow) var(--ease-out),
        transform var(--dur-slow) var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 80ms;
}

.reveal-delay-2 {
    transition-delay: 160ms;
}

.reveal-delay-3 {
    transition-delay: 240ms;
}

.reveal-delay-4 {
    transition-delay: 320ms;
}

.reveal-delay-5 {
    transition-delay: 400ms;
}

/* Fade in from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity var(--dur-slow) var(--ease-out),
        transform var(--dur-slow) var(--ease-out);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ── Utility ── */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--color-text-muted);
}

.text-accent {
    color: var(--color-accent);
}

.text-white {
    color: var(--color-white);
}

.mt-4 {
    margin-top: var(--sp-4);
}

.mt-6 {
    margin-top: var(--sp-6);
}

.mt-8 {
    margin-top: var(--sp-8);
}

.mt-12 {
    margin-top: var(--sp-12);
}

.mt-16 {
    margin-top: var(--sp-16);
}

.mb-4 {
    margin-bottom: var(--sp-4);
}

.mb-6 {
    margin-bottom: var(--sp-6);
}

.mb-8 {
    margin-bottom: var(--sp-8);
}

.mb-12 {
    margin-bottom: var(--sp-12);
}

.hidden {
    display: none !important;
}

/* ── Responsive Overrides ── */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-10);
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: var(--sp-16);
    }

    .nav__links,
    .nav__cta {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__mobile {
        display: flex;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .btn--lg {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   NUMERIC TYPOGRAPHY OVERRIDES
   Font: Inter — clean tabular figures, rapi untuk angka
   ============================================================ */

/* ── Utility class — bisa ditempel di element mana saja ── */
.num {
    font-family: var(--font-numeric) !important;
    font-variant-numeric: tabular-nums;
}

/* ── Stats & Counters ── */
.stat__number,
.stat__number span,
[data-count] {
    font-family: var(--font-numeric);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
}

/* ── Hero floating cards (angka besar seperti "98%", "12y") ── */
.hero__img-card-text strong,
.hero__img-card2 strong {
    font-family: var(--font-numeric);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
}

/* ── About hero stats ── */
.about-hero__stat strong {
    font-family: var(--font-numeric);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.05em;
}

/* ── Case study result numbers ── */
.case-study__result strong {
    font-family: var(--font-numeric);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
}

/* ── Portfolio hero meta number ── */
.portfolio-hero__meta strong {
    font-family: var(--font-numeric);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.05em;
}

/* ── Service card number label (01, 02, dst) ── */
.service-card__num,
.svc-card__num {
    font-family: var(--font-numeric);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

/* ── Value item large background number (01–06) ── */
.value-item__num {
    font-family: var(--font-numeric);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.05em;
}

/* ── Timeline year ── */
.timeline-item__year {
    font-family: var(--font-numeric);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

/* ── Story badge (12 years) ── */
.story__badge strong {
    font-family: var(--font-numeric);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
}

/* ── VM card / mission numbers kalau ada ── */
.vm-card strong {
    font-family: var(--font-numeric);
    font-variant-numeric: tabular-nums;
}

/* ── Footer bottom year ── */
.footer__bottom p {
    font-family: var(--font-body);
    /* tetap DM Sans tapi angka via unicode normal */
}

/* ── Badge & tag yang ada angka ── */
.badge,
.card__tag {
    font-variant-numeric: tabular-nums;
}

/* ── Process step number ── */
.process-step__num {
    font-family: var(--font-numeric);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
}

/* ── Article read time & dates ── */
.article-card__read,
.article-card__date,
.featured-article__date {
    font-family: var(--font-numeric);
    font-variant-numeric: tabular-nums;
    font-size: var(--fs-xs);
}

/* ── Intro pillar (jika ada angka) ── */
.intro__pillar-text strong {
    font-family: var(--font-display);
    /* teks, bukan angka — tetap Syne */
}