/* =====================================================
   Talenta Sainspreneur Indonesia — Landing Page
   Tone: Fresh, energetic, mahasiswa banget
   ===================================================== */

:root {
    --green-dark: #0a4d3c;
    --green-mid: #0f766e;
    --green-bright: #16a34a;
    --lime: #84cc16;
    --lime-light: #bef264;
    --lime-glow: #d9f99d;
    --blue: #2563eb;
    --blue-dark: #1e3a8a;
    --orange: #f97316;
    --orange-light: #fdba74;
    --navy: #1e293b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-500: #64748b;
    --gray-700: #334155;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(15, 118, 110, 0.08);
    --shadow-md: 0 8px 30px rgba(15, 118, 110, 0.12);
    --shadow-lg: 0 20px 60px rgba(15, 118, 110, 0.18);
    --radius: 16px;
    --radius-lg: 24px;
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

html {
    font-family: var(--font);
}

body {
    font-family: var(--font);
    font-weight: 400;
    color: var(--navy);
    background: var(--gray-50);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-brand .nav-logo {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

.navbar.scrolled .nav-brand .nav-logo {
    height: 36px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--green-mid);
}

.nav-cta {
    background: linear-gradient(135deg, var(--lime), var(--green-bright));
    color: var(--green-dark) !important;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(132, 204, 22, 0.35);
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(132, 204, 22, 0.45);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-dark);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 7rem 0 4rem;
    background: linear-gradient(160deg, #ecfdf5 0%, #f0fdf4 30%, #fefce8 70%, #fff7ed 100%);
    overflow: visible;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--lime);
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--orange);
    bottom: -80px;
    left: -60px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--blue);
    top: 40%;
    left: 10%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(132, 204, 22, 0.15);
    border: 1px solid rgba(132, 204, 22, 0.3);
    color: var(--green-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--lime);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--lime), var(--green-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green-mid);
    margin-bottom: 1rem;
}

.hero-desc {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--gray-500);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--lime), var(--green-bright));
    color: var(--green-dark);
    box-shadow: 0 4px 20px rgba(132, 204, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(132, 204, 22, 0.5);
}

.btn-outline {
    background: var(--white);
    color: var(--green-dark);
    border: 2px solid var(--green-mid);
}

.btn-outline:hover {
    background: var(--green-mid);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.stat-item .stat-num {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--green-dark);
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--gray-700);
    font-weight: 600;
}

.hero-visual {
    position: relative;
    padding: 1.5rem 1rem 1.5rem 1.5rem;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0.35rem;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: transform 0.4s;
    position: relative;
    z-index: 1;
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-card img {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    object-position: center;
}

.hero-float-badge {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 0.75rem 1.1rem;
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
}

.hero-float-badge.badge-1 {
    top: 0;
    left: 0;
    color: var(--blue);
}

.hero-float-badge.badge-2 {
    bottom: 0;
    right: 0;
    color: var(--orange);
    animation-delay: -3s;
}

/* ── Section Common ── */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.section-label {
    display: inline-block;
    background: rgba(132, 204, 22, 0.12);
    color: var(--green-mid);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--gray-500);
    font-size: 1.05rem;
    font-weight: 400;
}

/* ── Pillars ── */
.pillars {
    background: var(--white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--lime);
    box-shadow: var(--shadow-md);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.pillar-icon.green { background: rgba(132, 204, 22, 0.15); --icon-color: #65a30d; }
.pillar-icon.blue { background: rgba(37, 99, 235, 0.12); --icon-color: #2563eb; }
.pillar-icon.teal { background: rgba(15, 118, 110, 0.12); --icon-color: #0f766e; }
.pillar-icon.orange { background: rgba(249, 115, 22, 0.12); --icon-color: #ea580c; }

/* ── CSS Icons ── */
.css-icon {
    display: block;
    position: relative;
    color: var(--icon-color);
}

/* Ilmu — lightbulb */
.icon-ilmu {
    width: 22px;
    height: 30px;
}

.icon-ilmu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid currentColor;
    border-radius: 50%;
    background: transparent;
}

.icon-ilmu::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    border: 3px solid currentColor;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background: transparent;
}

/* Bisnis — bar chart */
.icon-bisnis {
    width: 28px;
    height: 26px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
}

.icon-bisnis i {
    display: block;
    width: 6px;
    background: currentColor;
    border-radius: 2px 2px 0 0;
}

.icon-bisnis i:nth-child(1) { height: 12px; opacity: 0.5; }
.icon-bisnis i:nth-child(2) { height: 20px; }
.icon-bisnis i:nth-child(3) { height: 15px; opacity: 0.75; }

/* Keberlanjutan — leaf */
.icon-leaf {
    width: 22px;
    height: 26px;
}

.icon-leaf::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    width: 18px;
    height: 22px;
    border: 3px solid currentColor;
    border-radius: 0 80% 0 80%;
    transform: translateX(-50%) rotate(-30deg);
    background: transparent;
}

.icon-leaf::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 10px;
    height: 0;
    border-top: 2px solid currentColor;
    transform: translateX(-50%) rotate(-30deg);
    opacity: 0.6;
}

/* Kolaborasi — network nodes */
.icon-kolaborasi {
    width: 30px;
    height: 26px;
}

.icon-kolaborasi i {
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    border: 3px solid currentColor;
    border-radius: 50%;
    background: transparent;
}

.icon-kolaborasi i:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.icon-kolaborasi i:nth-child(2) { bottom: 0; left: 0; }
.icon-kolaborasi i:nth-child(3) { bottom: 0; right: 0; }

.icon-kolaborasi::before,
.icon-kolaborasi::after {
    content: '';
    position: absolute;
    height: 2px;
    background: currentColor;
    opacity: 0.45;
    border-radius: 1px;
}

.icon-kolaborasi::before {
    width: 14px;
    bottom: 5px;
    left: 6px;
    transform: rotate(35deg);
    transform-origin: left center;
}

.icon-kolaborasi::after {
    width: 14px;
    bottom: 5px;
    right: 6px;
    transform: rotate(-35deg);
    transform-origin: right center;
}

.pillar-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.pillar-card p {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-500);
}

/* ── About / Konsep ── */
.about {
    background: linear-gradient(180deg, var(--gray-50) 0%, #ecfdf5 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.about-content p {
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.about-feature .icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
}

/* ── Tujuan ── */
.tujuan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tujuan-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--lime);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tujuan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tujuan-num {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--lime-light);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.tujuan-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.tujuan-card p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* ── Timeline / Struktur Acara ── */
.struktur {
    background: var(--green-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.struktur .section-label {
    background: rgba(132, 204, 22, 0.2);
    color: var(--lime-light);
}

.struktur .section-title {
    color: var(--white);
}

.struktur .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--lime), var(--green-bright), var(--lime));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 2.5rem;
}

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

.timeline-dot {
    position: absolute;
    left: 14px;
    top: 4px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--lime), var(--green-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--green-dark);
    box-shadow: 0 0 0 4px var(--green-dark), 0 0 0 6px var(--lime);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    transition: background 0.3s;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.12);
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lime-light);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.timeline-content p {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* ── Bidang Fokus ── */
.bidang-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.bidang-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.bidang-card .bidang-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bidang-card .bidang-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.bidang-card:hover .bidang-bg img {
    transform: scale(1.08);
}

.bidang-card .bidang-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 77, 60, 0.05) 0%, rgba(10, 77, 60, 0.55) 50%, rgba(10, 77, 60, 0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    z-index: 1;
}

.bidang-card .bidang-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.bidang-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
}

.bidang-card p {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.25rem;
}

/* ── Lokasi ── */
.lokasi {
    background: var(--white);
}

.lokasi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lokasi-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lokasi-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--orange), #ea580c);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.lokasi-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.lokasi-detail .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.lokasi-detail h4 {
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.25rem;
}

.lokasi-detail p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

.lokasi-map {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}

.lokasi-map .map-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.lokasi-map h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-dark);
}

.lokasi-map p {
    color: var(--gray-700);
    font-weight: 500;
    margin-top: 0.5rem;
}

.lokasi-map .days-badge {
    display: inline-block;
    margin-top: 1.25rem;
    background: var(--lime);
    color: var(--green-dark);
    font-weight: 600;
    font-size: 1.25rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

/* ── Agenda Expo ── */
.agenda-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.agenda-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid transparent;
}

.agenda-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--lime);
}

.agenda-card .agenda-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.agenda-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.4rem;
}

.agenda-card p {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* ── Stakeholder ── */
.stakeholder {
    background: linear-gradient(180deg, #ecfdf5 0%, var(--gray-50) 100%);
}

.stakeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stakeholder-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.stakeholder-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stakeholder-card .s-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lime-light), var(--lime));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.stakeholder-card h4 {
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.4rem;
}

.stakeholder-card p {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* ── Manfaat ── */
.manfaat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.manfaat-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.manfaat-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.manfaat-item:hover {
    transform: translateX(8px);
}

.manfaat-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--lime), var(--green-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}

.manfaat-item h4 {
    font-weight: 600;
    color: var(--green-dark);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.manfaat-item p {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
}

.manfaat-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ── Gallery ── */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
}

/* ── CTA ── */
.cta {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, #059669 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--lime);
    opacity: 0.08;
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.cta .section-title {
    color: var(--white);
}

.cta .section-desc {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 2rem;
}

.cta-quote {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: var(--lime-light);
}

/* ── Footer ── */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lime-light);
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.7;
    max-width: 360px;
}

.footer h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--lime);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .pillars-grid,
    .bidang-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .tujuan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-brand .nav-logo {
        height: 34px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: var(--shadow-md);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        padding: 2.5rem 0.5rem 2rem;
    }

    .about-grid,
    .lokasi-grid,
    .manfaat-grid {
        grid-template-columns: 1fr;
    }

    .pillars-grid,
    .bidang-grid,
    .stakeholder-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .agenda-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

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

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Assessment CTA teaser (landing page) */
.assessment-cta-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ecfdf5 100%);
}

.assessment-cta-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(15, 118, 110, 0.08);
    border: 1px solid rgba(15, 118, 110, 0.1);
}

.assessment-cta-card .section-desc {
    margin-bottom: 1.5rem;
}
