/* ========================================
   PT IPUSTAH TEKNOLOGI INDONESIA
   Complete CSS Stylesheet - Tema Hijau #28A745
   ======================================== */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
    /* IPUSTAH Colors - Tema Hijau */
    --color-primary: #1a1a1a;
    --color-secondary: #2d2d2d;
    --color-accent: #28A745;
    --color-accent-light: #85e098;
    --color-accent-dark: #1e7e34;
    --color-text-light: #ffffff;
    --color-text-dark: #1a1a1a;
    --color-text-muted: #666666;
    --color-text-gray: #888888;
    --color-bg-light: #f5f5f5;
    --color-bg-white: #ffffff;
    --color-overlay: rgba(12, 65, 32, 0.55);
    --color-pill-bg: rgba(255, 255, 255, 0.15);
    --color-pill-border: rgba(255, 255, 255, 0.3);
    --color-card-bg: rgba(30, 30, 30, 0.9);
    --color-tag-bg: rgba(0, 0, 0, 0.6);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Layout */
    --max-width-container: 1280px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ---------- Reset & Base Styles ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ---------- HERO SECTION ---------- */
@keyframes kenburns {
    0%   { transform: scale(1)    translate(0, 0); }
    25%  { transform: scale(1.06) translate(-1%, 0.5%); }
    50%  { transform: scale(1.1)  translate(1%, -0.5%); }
    75%  { transform: scale(1.06) translate(-0.5%, 1%); }
    100% { transform: scale(1)    translate(0, 0); }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: var(--space-4) var(--space-8);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -5%;
    background-image: url('../Gambar/ChatGPTImageMay26_100kb.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenburns 20s ease-in-out infinite;
    z-index: 0;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.28) 0%,
        rgba(0, 0, 0, 0.08) 45%,
        rgba(0, 0, 0, 0.55) 80%,
        rgba(0, 0, 0, 0.72) 100%
    );
    z-index: 1;
}

/* --- Hero Scroll Cue --- */
.hero-scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: scrollCueFade 1.2s cubic-bezier(.22,.61,.36,1) 1.8s forwards;
    pointer-events: none;
}

@keyframes scrollCueFade {
    from { opacity: 0; transform: translateX(-50%) translateY(8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hero-scroll-line {
    display: block;
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.65), rgba(255,255,255,0));
}

.hero-scroll-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

/* ---------- STICKY NAVBAR ---------- */
.navbar-sticky {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(-16px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms cubic-bezier(0.22,0.61,0.36,1),
                transform 320ms cubic-bezier(0.22,0.61,0.36,1);
}

.navbar-sticky.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.navbar-sticky .nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(18, 24, 20, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 6px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.18);
    list-style: none;
    margin: 0;
}

.navbar-sticky .nav-menu a {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.78);
    padding: 7px 16px;
    border-radius: 999px;
    white-space: nowrap;
    transition: background 220ms ease, color 220ms ease;
    text-decoration: none;
    display: block;
}

.navbar-sticky .nav-menu a:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}

.navbar-sticky .nav-menu a.active {
    background: rgba(255,255,255,0.95);
    color: #121212;
    font-weight: 600;
}

/* Dropdowns inside sticky navbar */
.navbar-sticky .nav-item-dropdown {
    position: relative;
}

.navbar-sticky .nav-item-dropdown > a::after {
    content: '▼';
    font-size: 0.6em;
    margin-left: 5px;
    opacity: 0.55;
    vertical-align: middle;
}

.navbar-sticky .dropdown-menu {
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(18,24,20,0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 40px rgba(0,0,0,0.32);
    border-radius: 16px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.navbar-sticky .nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.navbar-sticky .dropdown-menu a {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 10px;
}

.navbar-sticky .dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

/* ---------- NAVIGATION ---------- */
.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-2) 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-img {
    height: 80px;
    width: auto;
    transition: all var(--transition-base);
}

.logo-img:hover {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-full);
    border: none;
}

.nav-menu a {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-light);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-text-light);
}

.nav-menu a.active {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text-dark);
    font-weight: var(--font-weight-semibold);
}

/* Dropdown Navigation */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown > a::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 0.5em;
    opacity: 0.7;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    backdrop-filter: none;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: var(--space-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 100;
    margin-top: var(--space-2);
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    color: var(--color-text-dark);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #0d3320;
    color: #ffffff;
}

.btn-explore {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--color-text-light);
    color: var(--color-text-dark);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.05em;
    padding: var(--space-3) var(--space-4) var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-explore:hover {
    background: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-explore:hover .arrow-icon {
    background: var(--color-accent);
}

.btn-explore:hover .arrow-icon svg {
    stroke: var(--color-primary);
}

.btn-explore .arrow-icon {
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-explore .arrow-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-text-light);
}

/* ---------- HERO CONTENT ---------- */
.hero-content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-8) 0 var(--space-10);
    padding-top: clamp(40px, 6vh, 80px);
}

.hero-headline-container {
    min-height: 200px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-light);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-6);
    max-width: 800px;
    text-shadow: 0 3px 20px rgba(0,0,0,0.5), 0 1px 5px rgba(0,0,0,0.5);
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* ---------- ENERGY PILLS ---------- */
.energy-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: flex-end;
    margin-top: auto;
    margin-bottom: var(--space-8);
}

.pill {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-light);
    background: var(--color-pill-bg);
    border: 1px solid var(--color-pill-border);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.pill:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.pill.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

/* ---------- HERO CARDS ---------- */
.hero-cards {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    backdrop-filter: blur(10px);
    border: none;
    transition: all var(--transition-base);
}

.hero-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 34px;
    height: 34px;
    stroke: #ffffff;
    fill: none;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: var(--text-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-light);
    margin-bottom: var(--space-1);
}

.card-content p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.card-arrow {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition-fast);
}

.card-arrow:hover {
    background: var(--color-accent);
}

.card-arrow svg {
    width: 14px;
    height: 14px;
    stroke: #111111;
    fill: none;
    transition: stroke var(--transition-fast);
}

.card-arrow:hover svg {
    stroke: #ffffff;
}

/* ---------- PROCESS SECTION ---------- */
.process-section {
    padding: var(--space-20) var(--space-8);
    background: var(--color-bg-white);
    max-width: 1400px;
    margin: 0 auto;
}

.process-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: var(--font-weight-light);
    color: var(--color-text-dark);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-top: var(--space-6);
    margin-bottom: var(--space-12);
}

.process-title strong {
    font-weight: var(--font-weight-semibold);
}

.process-title em {
    font-style: italic;
    font-weight: var(--font-weight-light);
    color: var(--color-accent);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-6);
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(to right, #1E3A8A, #17a2b8, #20c997, #28A745, #198754);
    border-radius: 2px;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--color-bg-white);
    border: 4px solid var(--color-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    margin: 0 auto var(--space-5);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    transition: all var(--transition-base);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    background: var(--color-accent);
    color: var(--color-text-light);
}

.timeline-content h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
    margin-bottom: var(--space-2);
}

.timeline-content p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ---------- INFO SECTION ---------- */
.info-section {
    padding: 90px var(--space-8) 100px;
    background: #F2F3EF;
}

.info-header {
    max-width: 1440px;
    margin: 0 auto 52px;
    padding: 0 8px;
}

.info-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5C7A63;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1440px;
    margin: 0 auto;
    align-items: stretch;
    padding: 0 8px;
}

.info-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #F7F7F3;
    border-radius: 28px;
    padding: 36px;
    min-height: 280px;
    box-shadow: 0 12px 40px rgba(20,25,20,0.03);
    border: 1px solid rgba(28,40,35,0.05);
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: transform 320ms cubic-bezier(0.22,0.61,0.36,1),
                box-shadow 320ms cubic-bezier(0.22,0.61,0.36,1),
                border-color 320ms cubic-bezier(0.22,0.61,0.36,1);
}

/* Top accent line */
.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 36px;
    height: 2px;
    width: 0;
    background: #5C8D6A;
    border-radius: 0 0 2px 2px;
    transition: width 320ms cubic-bezier(0.22,0.61,0.36,1);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15,35,25,0.08);
    border-color: rgba(40,95,60,0.10);
}

.info-card:hover::before {
    width: 56px;
}

.info-num {
    display: block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #708071;
    opacity: 0.75;
    margin-bottom: 20px;
    line-height: 1;
}

.info-card h3 {
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 650;
    line-height: 1.18;
    color: #141414;
    margin-bottom: 14px;
    letter-spacing: -0.012em;
    max-width: 80%;
}

.info-card p {
    font-size: 16px;
    font-weight: 400;
    color: #66706B;
    line-height: 1.8;
    flex-grow: 1;
    margin: 0;
    max-width: 90%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 36px;
}

.info-arrow {
    position: absolute;
    bottom: 32px;
    right: 36px;
    font-size: 16px;
    color: #4a7a4c;
    opacity: 0;
    transform: translate(8px, 0);
    transition: opacity 320ms cubic-bezier(0.22,0.61,0.36,1),
                transform 320ms cubic-bezier(0.22,0.61,0.36,1);
    line-height: 1;
}

.info-card:hover .info-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.card-arrow svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-accent);
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
    padding: 80px var(--space-8);
    background: var(--color-bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: var(--space-12);
    max-width: 1400px;
    margin: 0 auto;
}

.section-number {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
    letter-spacing: 0.1em;
}

.section-label {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-dark);
    margin-bottom: var(--space-6);
}

.about-left .about-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 38ch;
}

.about-headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: var(--font-weight-light);
    color: var(--color-text-dark);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-8);
}

.about-headline strong {
    font-weight: var(--font-weight-semibold);
}

.about-headline em {
    font-style: italic;
    font-weight: var(--font-weight-light);
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    border: 1px solid var(--color-text-dark);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    transition: background 240ms cubic-bezier(.22,.61,.36,1),
                color 240ms cubic-bezier(.22,.61,.36,1),
                border-color 240ms cubic-bezier(.22,.61,.36,1),
                transform 240ms cubic-bezier(.22,.61,.36,1),
                box-shadow 240ms cubic-bezier(.22,.61,.36,1);
}

.btn-learn-more:hover {
    background: var(--color-primary);
    color: var(--color-text-light);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.btn-learn-more .arrow-icon {
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-learn-more .arrow-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--color-accent);
}

.btn-learn-more:hover .arrow-icon {
    background: var(--color-accent);
}

.btn-learn-more:hover .arrow-icon svg {
    stroke: var(--color-primary);
}

.btn-learn-more.dark {
    background: var(--color-primary);
    color: var(--color-text-light);
    border-color: var(--color-primary);
}

.btn-learn-more.dark .arrow-icon {
    background: var(--color-accent);
}

.btn-learn-more.dark .arrow-icon svg {
    stroke: var(--color-primary);
}

.btn-learn-more.dark:hover {
    background: transparent;
    color: var(--color-text-dark);
}

.btn-learn-more.dark:hover .arrow-icon {
    background: var(--color-primary);
}

.btn-learn-more.dark:hover .arrow-icon svg {
    stroke: var(--color-accent);
}

.about-right .solutions-text {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: var(--font-weight-light);
    color: var(--color-text-dark);
    line-height: 1.4;
    margin-bottom: var(--space-6);
}

.about-right .solutions-text strong {
    font-weight: var(--font-weight-semibold);
}

.about-right .solutions-text em {
    font-style: italic;
    font-weight: var(--font-weight-light);
}

.solutions-description {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

/* ---------- PROJECTS SECTION ---------- */
.projects-section {
    padding: var(--space-20) var(--space-8);
    background: var(--color-bg-white);
    max-width: 1400px;
    margin: 0 auto;
}

.projects-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: var(--font-weight-light);
    color: var(--color-text-dark);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-top: var(--space-6);
    margin-bottom: var(--space-8);
}

.projects-title strong {
    font-weight: var(--font-weight-semibold);
}

.projects-title em {
    font-style: italic;
    font-weight: var(--font-weight-light);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.tag {
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-light);
    background: var(--color-tag-bg);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
}

/* ---------- AFFILIATION / ECOSYSTEM SECTION ---------- */
.aff-section {
    padding: 130px var(--space-8) 130px;
    background: var(--color-bg-white);
}

.aff-container {
    max-width: 1600px;
    margin: 0 auto;
}

.aff-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5C7A63;
    margin-bottom: 64px;
}

.aff-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 90px;
    align-items: start;
}

/* Left */
.aff-left {
    position: sticky;
    top: 100px;
}

.aff-title {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #111111;
    margin-bottom: 36px;
}

.aff-title em {
    font-style: italic;
    font-weight: 400;
    color: #4F7B5B;
}

.aff-desc {
    font-size: 18px;
    line-height: 1.9;
    max-width: 520px;
    color: rgba(40,40,40,.72);
    margin: 0;
}

/* Right */
.aff-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Connector between cards */
.aff-connector {
    width: 1px;
    height: 24px;
    margin: 0 auto;
    background: linear-gradient(to bottom, rgba(90,120,100,.18), rgba(90,120,100,.03));
    opacity: 0.7;
    flex-shrink: 0;
}

/* Card */
.aff-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    column-gap: 56px;
    background: #F6F7F4;
    border: 1px solid rgba(70,90,80,.06);
    border-radius: 40px;
    padding: 56px;
    box-shadow: 0 20px 60px rgba(0,0,0,.03);
    cursor: pointer;
    transition: transform 320ms cubic-bezier(.22,1,.36,1),
                border-color 320ms cubic-bezier(.22,1,.36,1),
                box-shadow 320ms cubic-bezier(.22,1,.36,1);
}

.aff-card:last-of-type {
    background: #F2F4F1;
}

.aff-card:hover {
    transform: translateY(-4px);
    border-color: rgba(85,140,90,.16);
    box-shadow: 0 28px 80px rgba(0,0,0,.05);
}

.aff-card:hover .aff-logo {
    transform: scale(1.02);
}

.aff-card:hover .aff-tag {
    transform: translateX(6px);
}

/* Logo area */
.aff-logo-area {
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.aff-logo {
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 320ms cubic-bezier(.22,1,.36,1);
}

.aff-logo--id  { width: 150px; }
.aff-logo--ti  { width: 180px; }

/* Card body */
.aff-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.aff-card-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #7A8A78;
    margin-bottom: 24px;
}

.aff-card-text {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(40,40,40,.82);
    margin: 0 0 28px 0;
    max-width: 620px;
}

.aff-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5E8065;
    background: rgba(90,130,100,.06);
    border: 1px solid rgba(90,130,100,.10);
    border-radius: 999px;
    padding: 8px 18px;
    width: fit-content;
    pointer-events: none;
    user-select: none;
    transition: transform 320ms cubic-bezier(.22,1,.36,1);
}

/* Arrow-down variant for the scroll CTA */
.arrow-icon--down svg {
    transform: rotate(135deg);
    transition: transform 900ms cubic-bezier(0.22,0.61,0.36,1);
}

.btn-learn-more:hover .arrow-icon--down svg {
    transform: rotate(135deg) translate(-3px, 3px);
}

/* Responsive */
@media (max-width: 1200px) {
    .aff-title {
        font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    }
}

@media (max-width: 1024px) {
    .aff-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .aff-left {
        position: static;
    }

    .aff-desc {
        max-width: 100%;
    }

    .aff-title {
        font-size: clamp(2.4rem, 5vw, 3.4rem);
    }
}

@media (max-width: 640px) {
    .aff-section {
        padding: 100px var(--space-4) 120px;
    }

    .aff-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .aff-card {
        grid-template-columns: 1fr;
        row-gap: 28px;
        padding: 36px 28px;
        border-radius: 28px;
    }

    .aff-logo-area {
        width: auto;
    }

    .aff-logo--id { width: 120px; }
    .aff-logo--ti { width: 140px; }

    .aff-connector {
        height: 16px;
    }
}

/* ---------- ORG STRUCTURE SECTION ---------- */
.org-section {
    padding: 130px var(--space-8) 140px;
    background: var(--color-bg-light);
}

.org-container {
    max-width: 1440px;
    margin: 0 auto;
}

.org-grid {
    display: grid;
    grid-template-columns: 3fr 9fr;
    gap: 80px;
    align-items: start;
}

/* Left */
.org-left {
    position: sticky;
    top: 100px;
}

.org-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5C7A63;
    margin-bottom: 20px;
}

.org-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #111111;
    margin-bottom: 28px;
}

.org-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #6E736F;
    max-width: 240px;
}

/* Right — Card */
.org-card {
    background: #F5F5F2;
    border: 1px solid rgba(20,40,20,0.08);
    border-radius: 32px;
    padding: 56px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.04);
    transition: transform 500ms cubic-bezier(0.22,1,0.36,1),
                box-shadow 500ms cubic-bezier(0.22,1,0.36,1);
}

.org-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.07);
}

.org-card-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #758073;
    margin-bottom: 36px;
}

.org-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 500ms cubic-bezier(0.22,1,0.36,1);
}

.org-card:hover .org-img-wrap {
    transform: scale(1.01);
}

.org-img {
    display: block;
    width: 100%;
    max-height: 680px;
    object-fit: contain;
    object-position: center;
}

.org-caption {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(0,0,0,0.38);
    margin-top: 32px;
    max-width: 680px;
}

/* Lightbox */
.org-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(8,14,12,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 380ms cubic-bezier(0.22,0.61,0.36,1);
}

.org-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.org-lightbox-inner {
    max-width: 1200px;
    width: 100%;
    transform: scale(0.96);
    transition: transform 380ms cubic-bezier(0.22,0.61,0.36,1);
}

.org-lightbox.is-open .org-lightbox-inner {
    transform: scale(1);
}

.org-lightbox-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.org-lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    font-size: 22px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 240ms ease, color 240ms ease;
}

.org-lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

/* Org responsive */
@media (max-width: 1024px) {
    .org-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .org-left {
        position: static;
    }

    .org-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .org-section {
        padding: 100px var(--space-4) 120px;
    }

    .org-card {
        padding: 28px;
    }

    .org-img {
        max-height: none;
    }
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 1200px) {
    .hero-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
    
    .about-right {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
    
    .about-right .section-number,
    .about-right .section-label,
    .about-right .solutions-text {
        grid-column: 1;
    }
    
    .about-right .solutions-description,
    .about-right .btn-learn-more {
        grid-column: 2;
    }
    
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-8) var(--space-6);
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

@media (max-width: 992px) {
    .navbar {
        flex-wrap: wrap;
        gap: var(--space-4);
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .energy-pills {
        justify-content: flex-start;
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-right {
        grid-column: auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--space-4);
        min-height: auto;
    }
    
    .navbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-brand {
        justify-content: center;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: var(--space-2);
        padding: var(--space-3);
    }
    
    .nav-menu a {
        font-size: var(--text-xs);
        padding: var(--space-2);
    }
    
    .btn-explore {
        align-self: center;
        margin-top: var(--space-4);
    }
    
    .hero-content {
        padding: var(--space-10) 0;
    }
    
    .hero-title {
        text-align: center;
        margin: 0 auto var(--space-8);
    }
    
    .energy-pills {
        justify-content: center;
    }
    
    .pill {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-4);
    }
    
    .about-section,
    .process-section,
    .info-section {
        padding: var(--space-12) var(--space-4);
    }
    
    .about-headline,
    .process-title {
        font-size: 1.5rem;
    }
    
    .about-right .solutions-text {
        font-size: 1.25rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        min-height: unset;
    }
    
}

@media (max-width: 480px) {
    .hero-card {
        flex-direction: column;
        text-align: center;
    }
    
    .card-image {
        width: 100%;
        height: 120px;
    }
    
    .card-arrow {
        align-self: center;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: var(--text-lg);
    }
    
    .info-card {
        padding: var(--space-4);
    }
    
    .logo-img {
        height: 40px;
    }
}

/* ---------- UTILITY CLASSES ---------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- PRINT STYLES ---------- */
@media print {
    .hero {
        background: var(--color-primary) !important;
        color: var(--color-text-dark) !important;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .nav-menu,
    .btn-explore,
    .card-arrow,
    .btn-learn-more {
        display: none;
    }
}

/* ---------- PARTNER SLIDER ---------- */
.partner-section {
    background: var(--color-bg-white);
    padding: var(--space-5) 0;
    overflow: hidden;
    width: 100%;
}

.partner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.partner-track {
    display: flex;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.partner-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    height: 70px;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-base);
    flex-shrink: 0;
    margin: 0 var(--space-6);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.partner-logo img {
    height: 55px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

/* ---------- KAPABILITAS SECTION ---------- */
.kapabilitas-section {
    padding: 80px var(--space-8) 90px;
    background: #f4f5f2;
}

.kapabilitas-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header row */
.kap-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: end;
    margin-bottom: 56px;
}

.kap-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5a7a5c;
    margin-bottom: 18px;
}

.kap-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #1a1f1a;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.kap-title em {
    font-style: italic;
    color: #4a7a4c;
    font-weight: 400;
}

.kap-intro {
    font-size: var(--text-base);
    color: #5c6660;
    line-height: 1.75;
    max-width: 420px;
    align-self: end;
    padding-bottom: 4px;
}

/* Bento grid */
.kap-bento {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Cards */
.kap-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(80, 110, 80, 0.1);
    padding: 44px 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: 0 2px 12px rgba(30, 50, 30, 0.04), 0 8px 32px rgba(30, 50, 30, 0.04);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease;
}

.kap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 20px rgba(30, 50, 30, 0.06), 0 20px 48px rgba(40, 100, 50, 0.09);
    border-color: rgba(80, 140, 80, 0.22);
}

.kap-card--primary {
    grid-row: 1;
    grid-column: 1;
}

.kap-card--secondary {
    grid-row: 1;
    grid-column: 2;
    background: #1e2820;
    border-color: transparent;
}

.kap-card--secondary .kap-card-icon {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.1);
    color: #8ec48e;
}

.kap-card--secondary .kap-card-title {
    color: #f0f4f0;
}

.kap-card--secondary .kap-card-desc {
    color: #9aa89a;
}

.kap-card--secondary .kap-card-desc em {
    color: #7aba7a;
    font-style: italic;
}

.kap-card--secondary .kap-card-desc strong {
    color: #c8dcc8;
    font-weight: 600;
}

/* Icon */
.kap-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(74, 122, 76, 0.08);
    border: 1px solid rgba(74, 122, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a7a4c;
    flex-shrink: 0;
}

.kap-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Card body */
.kap-card-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kap-card-title {
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 700;
    color: #1a1f1a;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.kap-card-desc {
    font-size: 0.95rem;
    color: #5c6660;
    line-height: 1.72;
}

/* Tag pills */
.kap-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 4px 0;
}

.kap-tag-list li {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #4a7a4c;
    background: rgba(74, 122, 76, 0.08);
    border: 1px solid rgba(74, 122, 76, 0.18);
    border-radius: 999px;
    padding: 5px 14px;
}

.kap-card-note {
    font-size: 0.78rem;
    color: #8a9a8a;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Stat strip */
.kap-stats-row {
    grid-column: 1 / -1;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(80, 110, 80, 0.1);
    padding: 36px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(30, 50, 30, 0.04);
}

.kap-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.kap-stat-num {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #1a1f1a;
    letter-spacing: -0.03em;
    line-height: 1;
}

.kap-stat-label {
    font-size: 11.5px;
    font-weight: 500;
    color: #7a8a7a;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.kap-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(80, 110, 80, 0.15);
}

/* ---------- KEUNGGULAN SECTION ---------- */
.keunggulan-section {
    padding: 90px var(--space-8);
    background: #FBFBF8;
}

.keunggulan-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.kung-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: end;
    margin-bottom: 56px;
}

.kung-header-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kung-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5C7A63;
}

.kung-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #141414;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.kung-subtitle {
    font-size: 1rem;
    color: #626B66;
    line-height: 1.72;
    max-width: 400px;
    align-self: end;
    padding-bottom: 6px;
}

/* Bento layout */
.kung-bento {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 24px;
    align-items: stretch;
}

.kung-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Cards */
.kung-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 32px;
    border: 1px solid rgba(70, 90, 80, 0.08);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(20, 40, 30, 0.05);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 260ms cubic-bezier(.22,.61,.36,1),
                box-shadow 260ms cubic-bezier(.22,.61,.36,1),
                border-color 260ms cubic-bezier(.22,.61,.36,1);
    position: relative;
    overflow: hidden;
}

.kung-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(20, 40, 30, 0.07), 0 4px 16px rgba(92, 122, 99, 0.09);
    border-color: rgba(92, 122, 99, 0.18);
}

.kung-card--feature {
    background: #1e2820;
    border-color: transparent;
    justify-content: flex-end;
    min-height: 380px;
    padding: 48px;
}

.kung-card--feature .kung-num {
    color: rgba(197, 216, 200, 0.18);
}

.kung-card--feature .kung-card-title {
    color: #f0f5f0;
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
}

.kung-card--feature .kung-card-title em {
    color: #8ec48e;
    font-style: italic;
    font-weight: 300;
}

.kung-card--feature .kung-card-desc {
    color: #9aaa9a;
}

.kung-card--feature .kung-card-desc strong {
    color: #c8dcc8;
    font-weight: 600;
}

/* Number */
.kung-num {
    font-size: 88px;
    font-weight: 700;
    line-height: 1;
    color: rgba(92, 122, 99, 0.12);
    letter-spacing: -0.04em;
    position: absolute;
    top: 24px;
    left: 36px;
    pointer-events: none;
    user-select: none;
}

.kung-card--feature .kung-num {
    font-size: 120px;
    top: 28px;
    left: 40px;
}

/* Card body */
.kung-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.kung-card-title {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    font-weight: 700;
    color: #141414;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.kung-card-title em {
    font-style: italic;
    color: #5C7A63;
    font-weight: 400;
}

.kung-card-desc {
    font-size: 0.92rem;
    color: #626B66;
    line-height: 1.72;
}

.kung-card-desc strong {
    color: #2e3d2e;
    font-weight: 600;
}

.kung-card-desc em {
    font-style: italic;
    color: #4a7a4c;
}

/* ---------- PROCESS SECTION ---------- */
.proc-section {
    padding: 90px var(--space-8) 100px;
    background: #f4f5f2;
}

.proc-container {
    max-width: 1280px;
    margin: 0 auto;
}

.proc-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: end;
    margin-bottom: 48px;
}

.proc-header-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.proc-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5C7A63;
}

.proc-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #141414;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.proc-title em {
    font-style: italic;
    color: #4a7a4c;
    font-weight: 400;
}

.proc-intro {
    font-size: 1rem;
    color: #626B66;
    line-height: 1.72;
    max-width: 400px;
    align-self: end;
    padding-bottom: 6px;
}

/* Divider */
.proc-divider {
    width: 100%;
    height: 1px;
    background: rgba(70,90,80,0.12);
    margin-bottom: 64px;
}

/* Timeline: spine + nodes above cards */
.proc-timeline-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 28px;
}

.proc-spine {
    position: absolute;
    top: 50%;
    left: 9%;
    right: 9%;
    height: 2px;
    background: linear-gradient(90deg, #2D5E48, #2E8A5B);
    opacity: 0.35;
    transform: translateY(-50%);
    border-radius: 2px;
}

.proc-nodes-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    z-index: 1;
}

.proc-node-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
}

.proc-node {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #F5F5F2;
    border: 2px solid #4E8B65;
    transition: background 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}

.proc-node:hover,
.proc-node--featured {
    background: #4E8B65;
    box-shadow: 0 0 0 5px rgba(78,139,101,0.15);
}

/* Cards row — 5 equal columns */
.proc-cards-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: start;
}

/* Base card */
.proc-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(70,90,80,0.08);
    padding: 32px 28px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);
    opacity: 0;
    transform: translateY(20px);
}

.proc-card.proc-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease,
                transform 0.6s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);
}

.proc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 72px rgba(20,40,30,0.09);
}

.proc-card.proc-visible:hover { transform: translateY(-4px); }

/* Step number */
.proc-num {
    display: block;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 600;
    line-height: 1;
    color: #141414;
    opacity: 0.14;
    letter-spacing: -0.04em;
    margin-bottom: 4px;
}

/* Titles */
.proc-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #141414;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

/* Description */
.proc-card-desc {
    font-size: 0.86rem;
    color: #626B66;
    line-height: 1.68;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Featured card 03 */
.proc-card--featured {
    background: #1c2b20;
    border-color: rgba(120,200,120,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 60px rgba(90,180,120,0.06);
    transform: translateY(-8px) scale(1.03);
}

.proc-card--featured.proc-visible {
    transform: translateY(-8px) scale(1.03);
}

.proc-card--featured:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 32px 80px rgba(0,0,0,0.16), 0 0 80px rgba(90,180,120,0.1);
}

.proc-card--featured.proc-visible:hover {
    transform: translateY(-12px) scale(1.03);
}

.proc-card--featured .proc-num   { color: #ffffff; opacity: 0.12; }
.proc-card--featured .proc-card-title { color: #f0f5f0; }
.proc-card--featured .proc-card-desc  { color: rgba(255,255,255,0.5); }

/* Mobile: vertical */
@media (max-width: 900px) {
    .proc-spine {
        display: none;
    }
    .proc-nodes-row {
        display: none;
    }
    .proc-timeline-wrap {
        display: none;
    }
    .proc-cards-row {
        grid-template-columns: 1fr;
        gap: 12px;
        position: relative;
        padding-left: 32px;
    }
    .proc-cards-row::before {
        content: '';
        position: absolute;
        left: 9px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, #2D5E48, #2E8A5B);
        opacity: 0.35;
        border-radius: 2px;
    }
    .proc-card--featured {
        transform: none;
    }
    .proc-card--featured.proc-visible,
    .proc-card--featured:hover,
    .proc-card--featured.proc-visible:hover {
        transform: translateY(-4px);
    }
    .proc-header {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

/* ---------- PROYEK SECTION ---------- */
.proy-section {
    padding: 110px var(--space-8) 120px;
    background: #f4f5f2;
}

.proy-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.proy-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: var(--space-12);
    margin-bottom: 48px;
}

.proy-header-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.proy-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5C7A63;
}

.proy-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #141414;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.proy-title em {
    font-style: italic;
    color: #4a7a4c;
    font-weight: 400;
}

/* Stats */
.proy-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
    padding-bottom: 6px;
}

.proy-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proy-stat-num {
    font-size: clamp(56px, 6vw, 80px);
    font-weight: 600;
    line-height: 0.95;
    color: #141414;
    letter-spacing: -0.04em;
    display: inline;
}

.proy-stat-plus {
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 600;
    color: #4a7a4c;
    line-height: 1;
    vertical-align: super;
    display: inline;
}

.proy-stat-label {
    display: block;
    font-size: 14px;
    color: #7A807A;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 6px;
}

.proy-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(70,90,80,0.14);
    flex-shrink: 0;
    align-self: center;
}

/* Divider */
.proy-divider {
    width: 100%;
    height: 1px;
    background: rgba(70,90,80,0.12);
    margin-bottom: 48px;
}

/* Grid layout — 2×2 equal windows */
.proy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* Right column wrapper — unwrap to grid items */
.proy-col-right {
    display: contents;
}

/* Base card */
.proy-card {
    background: #FAFAF7;
    border-radius: 28px;
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0,0,0,0.05);
    transition: transform 600ms cubic-bezier(0.22,1,0.36,1),
                box-shadow 600ms cubic-bezier(0.22,1,0.36,1);
    display: flex;
    flex-direction: column;
}

.proy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 90px rgba(20,60,30,0.10);
}

/* All cards equal */
.proy-card--hero,
.proy-card--sm,
.proy-card--wide {
    grid-column: auto;
    grid-row: auto;
    flex-direction: column;
}

.proy-card--hero .proy-card-img,
.proy-card--sm .proy-card-img,
.proy-card--wide .proy-card-img {
    width: 100%;
    min-height: unset;
    max-height: none;
    flex-shrink: 0;
}

.proy-card--hero .proy-card-img img,
.proy-card--wide .proy-card-img img {
    max-height: none;
    width: 100%;
}

.proy-card--hero .proy-card-body,
.proy-card--sm .proy-card-body,
.proy-card--wide .proy-card-body {
    padding: 20px 24px 24px;
}

.proy-card--hero .proy-project-name,
.proy-card--wide .proy-project-name {
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
}

/* Image container — fixed height window, certificate framed */
.proy-card-img {
    background: #F2F3EF;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    height: 480px;
}

.proy-card-img img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 260ms cubic-bezier(.22,.61,.36,1);
}

.proy-card:hover .proy-card-img img {
    transform: scale(1.02);
}

/* Card body */
.proy-card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.proy-card--hero .proy-card-body {
    padding: 20px 28px 24px;
    gap: 4px;
}

.proy-cert-tag {
    display: inline-flex;
    align-items: center;
    height: 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5C7A63;
    background: #F2F3EF;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(80,90,80,0.08);
    width: fit-content;
    margin-top: 6px;
}

.proy-client {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7A807A;
    margin-top: 20px;
}

.proy-project-name {
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    font-weight: 600;
    color: #141414;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 4px 0 2px;
    max-width: 18ch;
}

.proy-card--hero .proy-project-name {
    font-size: clamp(1.5rem, 2vw, 2.1rem);
    line-height: 1.12;
    max-width: 16ch;
    margin-top: 8px;
}

/* Card CTA — muted text link */
.proy-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 500;
    color: #8a9a8a;
    text-decoration: none;
    opacity: 0.8;
    transition: color 0.25s ease, gap 0.25s ease, opacity 0.25s ease;
}

.proy-card-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.proy-card-btn:hover { color: #4a7a4c; gap: 9px; opacity: 1; }
.proy-card-btn:hover svg { transform: translateX(2px); }

/* CTA */
.proy-cta {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

.proy-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    height: 56px;
    padding: 0 36px;
    background: #1e2820;
    color: #f0f5f0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.35s ease, box-shadow 0.35s ease, gap 0.3s ease;
    box-shadow: 0 8px 32px rgba(20,60,30,0.18);
}

.proy-cta-btn:hover {
    background: #2a3d2e;
    box-shadow: 0 16px 48px rgba(20,60,30,0.28);
    gap: 20px;
}

.proy-cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.proy-cta-btn:hover .proy-cta-arrow {
    background: rgba(255,255,255,0.18);
    transform: translateX(4px);
}

.proy-cta-arrow svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 900px) {
    .proy-header {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    .proy-stats {
        justify-content: flex-start;
    }
    .proy-card-img {
        height: 360px;
    }
}

@media (max-width: 600px) {
    .proy-grid {
        grid-template-columns: 1fr;
    }
    .proy-card-img {
        height: 300px;
    }
    .proy-stat-num {
        font-size: 52px;
    }
}

/* ---------- LAYANAN SECTION ---------- */
.layanan-section {
    position: relative;
    padding: 100px var(--space-8) 110px;
    background: linear-gradient(180deg, #04150F 0%, #072018 40%, #0B2B1D 100%);
    overflow: hidden;
}

.layanan-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 20%, rgba(92,160,100,0.06) 0%, transparent 100%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(40,100,60,0.08) 0%, transparent 100%);
    pointer-events: none;
}

.layanan-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.lay-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: end;
    margin-bottom: 48px;
}

.lay-header-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lay-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(160, 200, 160, 0.6);
}

.lay-title {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 500;
    color: #f2f5f2;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.lay-title em {
    font-style: italic;
    color: #7aba80;
    font-weight: 300;
}

.lay-intro {
    font-size: 1rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.72;
    max-width: 360px;
    align-self: end;
    padding-bottom: 8px;
}

.lay-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin-bottom: 48px;
}

/* Showcase grid */
.lay-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* Base card */
.lay-card {
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 40px 100px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    transition: transform 700ms cubic-bezier(.22,1,.36,1),
                box-shadow 700ms cubic-bezier(.22,1,.36,1),
                border-color 500ms ease;
}

.lay-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 60px 120px rgba(0,0,0,0.28), 0 0 0 1px rgba(120,180,120,0.12);
    border-color: rgba(120,180,120,0.14);
}

/* Card 02 left accent */
.lay-card--accent {
    border-left: 1px solid rgba(120,190,120,0.22);
}

/* Image area — atmospheric top 40% */
.lay-card-img {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    height: 220px;
}

.lay-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72) saturate(0.8);
    transition: transform 700ms cubic-bezier(.22,1,.36,1), filter 500ms ease;
}

.lay-card:hover .lay-card-img img {
    transform: scale(1.04);
    filter: brightness(0.78) saturate(0.9);
}

.lay-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,18,14,0.15), rgba(8,18,14,0.85));
}

/* Card content — editorial typography zone */
.lay-card-content {
    padding: 32px 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Watermark number */
.lay-bg-num {
    position: absolute;
    bottom: -12px;
    right: 20px;
    font-size: 140px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255,255,255,0.04);
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
}

/* Certification code */
.lay-cert-code {
    display: block;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(160,200,160,0.7);
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Hero certification name */
.lay-cert-name {
    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #f2f5f2;
    margin-bottom: 20px;
}

.lay-cert-name--italic {
    font-style: italic;
    font-weight: 300;
    color: #b8e8b0;
}

/* Description */
.lay-card-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pill button */
.lay-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.82);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 400ms ease, border-color 400ms ease, color 400ms ease;
    width: fit-content;
    backdrop-filter: blur(8px);
    margin-top: auto;
}

.lay-pill-btn:hover {
    background: rgba(120,180,120,0.15);
    border-color: rgba(120,180,120,0.38);
    color: #b8e8b8;
}

.lay-pill-btn svg {
    width: 13px;
    height: 13px;
}

/* Layanan CTA */
.lay-cta {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
    padding: 120px var(--space-8) 100px;
    background: #F2F3EF;
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
}

.contact-eyebrow-row {
    margin-bottom: 56px;
}

.contact-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5C7A63;
}

.contact-split {
    display: grid;
    grid-template-columns: 52% 1fr;
    gap: 48px;
    align-items: start;
}

/* Left column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Editorial info panel */
.contact-card {
    position: relative;
    background: #F7F7F3;
    border: 1px solid rgba(30,45,35,0.05);
    border-radius: 32px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 16px 48px rgba(20,25,20,0.03);
    overflow: hidden;
    transition: transform 240ms cubic-bezier(.22,.61,.36,1),
                box-shadow 240ms cubic-bezier(.22,.61,.36,1),
                border-color 240ms cubic-bezier(.22,.61,.36,1);
}

/* Left accent line */
.contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: #6A9A75;
    border-radius: 0 2px 2px 0;
    transition: height 350ms cubic-bezier(0.22,0.61,0.36,1);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 72px rgba(20,40,30,0.06);
    border-color: rgba(74,120,84,0.14);
}

.contact-card:hover::before {
    height: 60%;
}

/* Icon */
.contact-icon-wrapper {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(98,138,110,0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5E8B68;
    flex-shrink: 0;
    transition: background 320ms ease;
}

.contact-card:hover .contact-icon-wrapper {
    background: rgba(98,138,110,0.13);
}

/* Details */
.contact-details-wrapper {
    flex-grow: 1;
    padding-right: 52px;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #758073;
    margin-bottom: 10px;
    display: block;
}

.contact-value {
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 600;
    color: #111111;
    line-height: 1.15;
    max-width: 85%;
}

/* Maps inline link */
.maps-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4F8862;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 14px;
    transition: gap 280ms ease, opacity 280ms ease;
    opacity: 0.9;
}

.maps-link-btn:hover {
    gap: 10px;
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Ghost copy button */
.copy-action-btn {
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 999px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #758073;
    transition: background 280ms ease,
                transform 280ms ease,
                border-color 280ms ease,
                color 280ms ease;
    flex-shrink: 0;
}

.copy-action-btn:hover {
    background: #ffffff;
    border-color: rgba(0,0,0,0.12);
    color: #3D7A52;
    transform: translateY(-50%) translateX(3px) rotate(8deg);
}

/* Right column — Map */
.contact-map-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-wrapper {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    min-height: 560px;
    height: 100%;
    transition: transform 600ms cubic-bezier(0.22,0.61,0.36,1);
}

.map-wrapper:hover {
    transform: scale(1.005);
}

.map-iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 560px;
    border: 0;
}

/* Floating chip overlay */
.map-chip {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #141414;
    letter-spacing: 0.02em;
    pointer-events: none;
}

.map-card-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    border-radius: var(--radius-lg);
    display: block;
}

/* Toast Notification */
.copy-toast {
    visibility: hidden;
    min-width: 250px;
    background-color: var(--color-accent);
    color: var(--color-text-light);
    text-align: center;
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: var(--text-base);
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

/* ---------- RESPONSIVE STYLES FOR NEW SECTIONS ---------- */
@media (max-width: 1200px) {
    .kung-bento {
        grid-template-columns: 1fr;
    }
    .kung-card--feature {
        min-height: 300px;
    }
    
    .proyek-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .map-card-wrapper iframe {
        min-height: 300px;
    }
    
    .lay-header {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    .lay-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .kap-header {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    .kap-bento {
        grid-template-columns: 1fr;
    }
    .kap-card--primary,
    .kap-card--secondary {
        grid-row: auto;
        grid-column: auto;
    }
    .kap-stats-row {
        padding: 28px 32px;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
    .kap-stat-divider {
        display: none;
    }
    .kung-header {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    .kung-right {
        grid-template-columns: 1fr 1fr;
    }
    
    .proyek-stats {
        gap: var(--space-8);
    }
    
    .lay-card--featured .lay-card-content--featured {
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    .partner-logo img {
        height: 50px;
    }
    
    .kung-right {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: var(--text-4xl);
    }
    
    .proyek-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-card-wrapper iframe {
        min-height: 250px;
    }
    
    .lay-title {
        font-size: 2rem;
    }
}

@media (max-width: 560px) {
    .proyek-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .partner-track {
        animation-duration: 15s;
    }
    
    .partner-logo {
        height: 60px;
        width: 120px;
        margin: 0 var(--space-4);
    }
    
    .partner-logo img {
        height: 45px;
        max-width: 100px;
    }
    
    .kung-card {
        padding: 28px;
    }
    
    .proyek-number {
        font-size: var(--text-3xl);
    }
    
    .contact-card {
        padding: var(--space-4);
    }
    
    .copy-action-btn {
        right: var(--space-4);
        top: var(--space-4);
    }
    
    .lay-card-content--featured {
        padding: 28px;
    }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.footer {
    background: var(--color-bg-white);
    padding: var(--space-6);
}

.footer-card {
    max-width: var(--max-width-container);
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d3320 50%, #1a1a1a 100%);
    border-radius: 24px;
    padding: var(--space-12) var(--space-12) var(--space-6);
    color: var(--color-text-light);
    overflow: hidden;
}

/* --- CTA Block --- */
.footer-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    margin-bottom: var(--space-12);
}

.footer-section-number {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.08em;
    margin-bottom: var(--space-2);
}

.footer-section-label {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-accent);
    letter-spacing: 0.04em;
    margin-bottom: var(--space-6);
}

.footer-headline {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: var(--font-weight-light);
    line-height: 1.2;
    color: var(--color-text-light);
    margin-bottom: var(--space-8);
}

.footer-headline em {
    font-style: italic;
    font-weight: var(--font-weight-light);
    color: var(--color-accent-light);
}

.footer-headline strong {
    font-weight: var(--font-weight-bold);
    color: var(--color-text-light);
}

.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.96);
    color: #111111;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0 40px;
    height: 64px;
    border-radius: 999px;
    transition: transform 400ms cubic-bezier(0.22,0.61,0.36,1),
                box-shadow 400ms cubic-bezier(0.22,0.61,0.36,1),
                background 400ms cubic-bezier(0.22,0.61,0.36,1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    text-decoration: none;
    white-space: nowrap;
}

.btn-footer-cta:hover {
    background: #ffffff;
    transform: translateX(6px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.32);
}

.footer-arrow-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-arrow-icon svg {
    width: 16px;
    height: 16px;
    stroke: #111111;
    transition: transform 400ms cubic-bezier(0.22,0.61,0.36,1);
}

.btn-footer-cta:hover .footer-arrow-icon svg {
    transform: translate(4px, -4px);
}

/* --- Contact Info (right column) --- */
.footer-cta-right {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    padding-left: var(--space-8);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.footer-contact-label {
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-contact-value {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a.footer-contact-value:hover {
    color: var(--color-accent-light);
}

/* --- Divider --- */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-8);
}

/* --- Bottom Bar --- */
.footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo {
    height: 72px;
    width: auto;
}

.footer-bar-nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.footer-bar-nav a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 220ms ease;
    letter-spacing: 0.02em;
}

/* --- Copyright --- */
.footer-copyright {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .footer {
        padding: var(--space-4);
    }

    .footer-card {
        padding: var(--space-10) var(--space-6) var(--space-6);
        border-radius: 16px;
    }

    .footer-cta {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-cta-right {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: var(--space-6);
    }

    .footer-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-5);
    }

    .footer-bar-nav {
        flex-wrap: wrap;
        gap: var(--space-4);
    }
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top-btn {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background: var(--color-accent);
}

.scroll-top-btn svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
}

/* ========================================
   MOTION & INTERACTION SYSTEM
   ======================================== */

:root {
    --ease-out: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms var(--ease-out),
                transform 600ms var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Org card gets scale treatment */
.reveal--scale {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
    transition: opacity 600ms var(--ease-out),
                transform 600ms var(--ease-out);
}

.reveal--scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* ---------- Proc Reveal (fix missing CSS) ---------- */
.proc-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 560ms var(--ease-out),
                transform 560ms var(--ease-out);
}

.proc-visible {
    opacity: 1;
    transform: none;
}

/* ---------- Card Hover Normalizations ---------- */

/* Info Publik — arrow translateX */
.info-arrow {
    transition: opacity 200ms var(--ease-out),
                transform 200ms var(--ease-out);
}

/* Ekosistem accent line expand */
.aff-card {
    transition: transform 200ms var(--ease-out),
                border-color 200ms var(--ease-out),
                box-shadow 200ms var(--ease-out);
}

/* Keunggulan cards — normalize timing */
.kung-card {
    transition: transform 200ms var(--ease-out),
                box-shadow 200ms var(--ease-out),
                border-color 200ms var(--ease-out);
}

/* Proyek/Bukti — image scale */
.proy-card {
    transition: transform 200ms var(--ease-out),
                box-shadow 200ms var(--ease-out);
}

/* Layanan cards */
.lay-card {
    transition: transform 200ms var(--ease-out),
                box-shadow 200ms var(--ease-out),
                border-color 200ms var(--ease-out);
}

/* ---------- CTA Button Tactility ---------- */

/* :active press scale */
.btn-footer-cta:active,
.btn-learn-more:active,
.proy-cta-btn:active,
.lay-card-cta:active {
    transform: scale(.98);
    transition: transform 80ms var(--ease-out);
}

/* :focus-visible soft green ring */
.btn-footer-cta:focus-visible,
.btn-learn-more:focus-visible,
.proy-cta-btn:focus-visible,
.lay-card-cta:focus-visible {
    outline: 2px solid rgba(74,160,84,0.55);
    outline-offset: 3px;
}

/* Arrow icon rotate on footer CTA hover */
.btn-footer-cta:hover .footer-arrow-icon {
    transform: rotate(12deg);
}

.btn-footer-cta .footer-arrow-icon {
    transition: transform 200ms var(--ease-out);
}

/* ---------- Footer Nav Underline Left→Right ---------- */
.footer-bar-nav a {
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0% 1px;
    transition: background-size 220ms var(--ease-out),
                color 220ms ease;
    text-decoration: none;
}

.footer-bar-nav a:hover {
    background-size: 100% 1px;
    color: #a8d4b0;
    text-decoration: none;
}

/* ---------- Image Loading Fade ---------- */
img:not(.hero-bg-img):not([data-no-fade]) {
    transition: opacity 320ms ease;
}

img.img-loaded {
    opacity: 1 !important;
}

/* ---------- prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal--scale,
    .proc-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
