/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Load font Vera Humana dari file lokal */
@font-face {
    font-family: 'Vera Humana';
    src: url('verah.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    background: #020510;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
    cursor: default;
}

/* ===== SCROLLBAR KUSTOM ===== */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #020510;
}
::-webkit-scrollbar-thumb {
    background: rgba(140, 160, 255, 0.2);
    border-radius: 10px;
}

/* ============================= */
/* ===== NAVIGASI ===== */
/* ============================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0 2rem;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Navbar berubah saat scroll */
.navbar.scrolled {
    background: rgba(2, 5, 16, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo navigasi */
.nav-logo {
    flex-shrink: 0;
}

.nav-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Vera Humana', serif; /* Font Vera Humana untuk logo navbar */
    letter-spacing: 0.2em;
    color: rgba(220, 225, 255, 0.9);
    text-shadow: 0 0 20px rgba(140, 160, 255, 0.3);
}

/* Menu links */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
    color: rgba(180, 195, 255, 0.95);
}

/* CTA button */
.nav-cta {
    flex-shrink: 0;
    padding: 0.55rem 1.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(220, 225, 255, 0.9);
    text-decoration: none;
    border: 1px solid rgba(140, 160, 255, 0.25);
    border-radius: 100px;
    background: rgba(140, 160, 255, 0.08);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: rgba(140, 160, 255, 0.16);
    border-color: rgba(140, 160, 255, 0.4);
    box-shadow: 0 0 20px rgba(140, 160, 255, 0.1);
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================= */
/* ===== SECTIONS UMUM ===== */
/* ============================= */
.section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Section HOME */
.section-home {
    background: #000000;
}

/* Section konten biasa */
.section-content {
    background: #020510;
    padding: 120px 0 80px;
}

/* Section alt (sedikit lebih terang) */
.section-alt {
    background: #03071a;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glow background dekoratif */
.section-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.12;
}

.glow-left {
    background: radial-gradient(circle, rgba(80, 110, 255, 1), transparent 70%);
    top: -100px;
    left: -200px;
}

.glow-right {
    background: radial-gradient(circle, rgba(80, 110, 255, 1), transparent 70%);
    bottom: -100px;
    right: -200px;
}

/* Header section */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(140, 160, 255, 0.7);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(220, 225, 255, 0.92);
    margin-bottom: 1.2rem;
    text-shadow: 0 0 40px rgba(140, 160, 255, 0.15);
}

.section-desc {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.4);
}

/* Sub-section title */
.sub-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(200, 210, 255, 0.8);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* ============================= */
/* ===== GLASS CARD BASE ===== */
/* ============================= */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(140, 160, 255, 0.15);
    transform: translateY(-2px);
}

/* ============================= */
/* ===== HOME SECTION ===== */
/* ============================= */
#smokeCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.content {
    text-align: center;
    animation: fadeInUp 2s ease-out;
}

.logo-glow {
    position: relative;
}

.title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
    font-family: 'Vera Humana', serif; /* Font Vera Humana dari file lokal */
    letter-spacing: 0.08em;
    color: rgba(220, 225, 255, 0.85);
    text-shadow:
        0 0 40px rgba(140, 160, 255, 0.2),
        0 0 80px rgba(140, 160, 255, 0.1),
        0 0 140px rgba(100, 130, 255, 0.06),
        0 0 200px rgba(80, 110, 255, 0.03);
    animation: titlePulse 6s ease-in-out infinite;
    user-select: none;
}

.subtitle {
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.5rem;
    text-transform: uppercase;
    user-select: none;
}

.tagline {
    margin-top: 3rem;
    opacity: 0;
    animation: fadeIn 2s ease-out 1s forwards;
}

.tag-line-text {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    animation: fadeIn 2s ease-out 2s forwards;
    pointer-events: none;
}

.scroll-hint span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}

.scroll-arrow {
    color: rgba(255, 255, 255, 0.2);
    animation: bounceY 2s ease-in-out infinite;
}

/* ===== SMOKE CONTROLS ===== */
.controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: all;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 1.5s forwards;
}

.control-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.control-group label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== RANGE SLIDER ===== */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

input[type="range"]:hover {
    background: rgba(255, 255, 255, 0.18);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

input[type="range"]::-webkit-slider-thumb:hover {
    background: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1.2);
}

input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

/* ===== TOGGLE BUTTON ===== */
.control-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    user-select: none;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.dot.active {
    background: #00ff88;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

/* ============================= */
/* ===== SECTION TENTANG ===== */
/* ============================= */

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

.stat-card {
    padding: 1.8rem 1.5rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(180, 195, 255, 0.9);
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

/* Dua kolom */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.col-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(200, 210, 255, 0.85);
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

.col-para {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
}

.mission-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mission-list li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
    padding-left: 1.5rem;
    position: relative;
}

.mission-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(140, 160, 255, 0.5);
    font-size: 0.85rem;
}

/* Info cards */
.col-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.info-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(200, 210, 255, 0.8);
    margin-bottom: 0.3rem;
}

.info-card p {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================= */
/* ===== SECTION KEGIATAN ===== */
/* ============================= */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

/* Card pertama (featured) lebih besar */
.activity-card {
    padding: 2rem;
    position: relative;
}

.activity-card.featured {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

.activity-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(140, 160, 255, 0.8);
    background: rgba(140, 160, 255, 0.08);
    border: 1px solid rgba(140, 160, 255, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.activity-icon-lg {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.activity-card.featured .activity-icon-lg {
    font-size: 3rem;
}

.activity-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(210, 218, 255, 0.9);
    margin-bottom: 0.75rem;
}

.activity-card.featured .activity-title {
    font-size: 1.4rem;
}

.activity-desc {
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.38);
    flex: 1;
}

.activity-meta {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.meta-tag {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 100px;
    padding: 0.25rem 0.75rem;
}

/* ============================= */
/* ===== SECTION KARIR ===== */
/* ============================= */

/* Benefit row */
.benefit-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.4rem;
    border-radius: 12px;
    flex: 1 1 160px;
}

.benefit-icon {
    font-size: 1.1rem;
}

.benefit-text {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(200, 210, 255, 0.7);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* Job list */
.job-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.job-card {
    padding: 1.8rem;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(210, 218, 255, 0.9);
    margin-bottom: 0.25rem;
}

.job-dept {
    font-size: 0.75rem;
    color: rgba(140, 160, 255, 0.5);
    letter-spacing: 0.05em;
}

.job-type {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(0, 255, 136, 0.7);
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 100px;
    padding: 0.25rem 0.75rem;
    white-space: nowrap;
}

.job-desc {
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 1rem;
}

.job-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.job-tag {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.2rem 0.65rem;
    border-radius: 100px;
}

.job-btn {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(180, 195, 255, 0.8);
    text-decoration: none;
    padding: 0.55rem 1.3rem;
    border: 1px solid rgba(140, 160, 255, 0.2);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.job-btn:hover {
    background: rgba(140, 160, 255, 0.1);
    border-color: rgba(140, 160, 255, 0.35);
    box-shadow: 0 0 20px rgba(140, 160, 255, 0.08);
}

/* Alur rekrutmen */
.recruitment-flow {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1 1 180px;
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
}

.flow-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(140, 160, 255, 0.15);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

.flow-info h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(200, 210, 255, 0.8);
    margin-bottom: 0.4rem;
}

.flow-info p {
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.32);
}

.flow-arrow {
    color: rgba(140, 160, 255, 0.2);
    font-size: 1.2rem;
    padding-top: 1.6rem;
    flex-shrink: 0;
}

/* ============================= */
/* ===== SECTION CONTACT ===== */
/* ============================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    align-items: start;
}

/* Info kontak */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem;
}

.contact-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(200, 210, 255, 0.8);
    margin-bottom: 0.35rem;
    letter-spacing: 0.03em;
}

.contact-item p {
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.35);
}

/* Form */
.contact-form {
    padding: 2.5rem;
}

.form-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(210, 218, 255, 0.9);
    margin-bottom: 1.75rem;
    letter-spacing: 0.03em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    outline: none;
    transition: all 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(140, 160, 255, 0.3);
    background: rgba(140, 160, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(140, 160, 255, 0.05);
}

/* Style select option */
.form-group select option {
    background: #0d1128;
    color: rgba(255, 255, 255, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    padding: 0.9rem;
    background: rgba(140, 160, 255, 0.1);
    border: 1px solid rgba(140, 160, 255, 0.25);
    border-radius: 12px;
    color: rgba(200, 215, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.form-submit:hover {
    background: rgba(140, 160, 255, 0.18);
    border-color: rgba(140, 160, 255, 0.4);
    box-shadow: 0 0 30px rgba(140, 160, 255, 0.1);
}

/* ============================= */
/* ===== FOOTER ===== */
/* ============================= */
.footer {
    background: #010409;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2rem 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Vera Humana', serif; /* Font Vera Humana untuk logo footer */
    letter-spacing: 0.25em;
    color: rgba(180, 195, 255, 0.4);
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.02em;
}

.footer-powered {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.15);
}

/* Span khusus untuk teks GGM di dalam kalimat — pakai font Vera Humana */
.ggm-brand {
    font-family: 'Vera Humana', serif;
}

.footer-powered span {
    font-family: 'Vera Humana', serif; /* Font Vera Humana untuk GGM di footer powered */
    color: rgba(140, 160, 255, 0.4);
}

/* ============================= */
/* ===== ANIMASI ===== */
/* ============================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow:
            0 0 40px rgba(140, 160, 255, 0.2),
            0 0 80px rgba(140, 160, 255, 0.1),
            0 0 140px rgba(100, 130, 255, 0.06);
    }

    50% {
        text-shadow:
            0 0 60px rgba(140, 160, 255, 0.28),
            0 0 120px rgba(120, 145, 255, 0.15),
            0 0 200px rgba(90, 120, 255, 0.08);
    }
}

@keyframes bounceY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

/* Animasi masuk saat scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================= */
/* ===== RESPONSIVE ===== */
/* ============================= */
@media (max-width: 1024px) {
    .stats-row    { grid-template-columns: repeat(2, 1fr); }
    .two-col      { grid-template-columns: 1fr; gap: 2rem; }
    .activity-grid { grid-template-columns: repeat(2, 1fr); }
    .activity-card.featured { grid-column: 1 / -1; grid-row: auto; flex-direction: row; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Navbar mobile */
    .hamburger { display: flex; }
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: rgba(2, 5, 16, 0.96);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1rem 0;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-link {
        border-radius: 0;
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }
    .nav-cta { display: none; }

    /* Sections */
    .section-content { padding: 100px 0 60px; }
    .activity-grid   { grid-template-columns: 1fr; }
    .activity-card.featured { flex-direction: column; }
    .job-list        { grid-template-columns: 1fr; }
    .recruitment-flow { flex-direction: column; }
    .flow-arrow      { display: none; }
    .form-row        { grid-template-columns: 1fr; }
    .stats-row       { grid-template-columns: repeat(2, 1fr); }

    .controls {
        flex-direction: column;
        gap: 1rem;
        bottom: 1rem;
        padding: 1rem 1.5rem;
    }

    input[type="range"] { width: 140px; }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}