/* ============================================
   DESIGN SYSTEM — Rekrutmen BPP HIPMI
   Nuansa: Deep Indigo + Soft Lavender
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
    /* Primary Colors */
    --primary: #2D2B7F;
    --primary-light: #4A47A3;
    --primary-dark: #1E1C5E;
    --primary-rgb: 45, 43, 127;

    /* Accent Colors */
    --accent: #6C63FF;
    --accent-light: #A5A0F5;
    --accent-dark: #5046E5;
    --accent-rgb: 108, 99, 255;

    /* Background */
    --bg-main: #EEEDF5;
    --bg-surface: #FFFFFF;
    --bg-surface-alt: #F5F3FA;
    --bg-surface-hover: #F0EEF8;

    /* Text */
    --text-primary: #1A1848;
    --text-secondary: #64618C;
    --text-muted: #9B98B8;
    --text-on-primary: #FFFFFF;
    --text-on-accent: #FFFFFF;

    /* Status Colors */
    --success: #22C55E;
    --success-light: #DCFCE7;
    --warning: #F59E0B;
    --warning-light: #FEF3C7;
    --danger: #EF4444;
    --danger-light: #FEE2E2;
    --info: #3B82F6;
    --info-light: #DBEAFE;

    /* Tags / Badges */
    --tag-bg: #E8E5F5;
    --tag-text: #5B52CC;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2D2B7F 0%, #4338CA 100%);
    --gradient-accent: linear-gradient(135deg, #6C63FF 0%, #4338CA 100%);
    --gradient-hero: linear-gradient(160deg, #1E1C5E 0%, #2D2B7F 40%, #4338CA 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(45, 43, 127, 0.06);
    --shadow-md: 0 4px 12px rgba(45, 43, 127, 0.08);
    --shadow-lg: 0 8px 30px rgba(45, 43, 127, 0.12);
    --shadow-xl: 0 20px 60px rgba(45, 43, 127, 0.15);
    --shadow-card: 0 2px 8px rgba(45, 43, 127, 0.06), 0 0 1px rgba(45, 43, 127, 0.1);
    --shadow-card-hover: 0 8px 30px rgba(45, 43, 127, 0.12), 0 0 1px rgba(45, 43, 127, 0.1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --header-height: 72px;
}


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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}


/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}


/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p {
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-on-primary);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--text-on-accent);
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.35);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-on-primary);
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--tag-bg);
    color: var(--tag-text);
    border-color: transparent;
}

.btn-ghost:hover {
    background: var(--accent-light);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-md);
}


/* ============================================
   BADGE / TAG
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    background: var(--tag-bg);
    color: var(--tag-text);
}

.badge-success { background: var(--success-light); color: #15803d; }
.badge-warning { background: var(--warning-light); color: #92400e; }
.badge-danger { background: var(--danger-light); color: #991b1b; }
.badge-info { background: var(--info-light); color: #1e40af; }


/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-card-hover);
}

.card-accent {
    border-left: 4px solid var(--accent);
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-on-primary);
    transition: color var(--transition-fast);
}

.navbar.scrolled .nav-logo {
    color: var(--text-primary);
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.navbar.scrolled .nav-links a {
    color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-on-primary);
    background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--primary);
    background: var(--tag-bg);
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--text-on-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar.scrolled .menu-toggle span {
    background: var(--text-primary);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-surface);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 12px 16px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
}

.mobile-menu a:hover {
    background: var(--tag-bg);
    color: var(--primary);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(67, 56, 202, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

/* Animated Background Circles */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float 8s infinite ease-in-out;
}

.hero-orb--1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -5%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.12), transparent 70%);
    animation-delay: 0s;
}

.hero-orb--2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: -5%;
    background: radial-gradient(circle, rgba(165, 160, 245, 0.1), transparent 70%);
    animation-delay: -3s;
}

.hero-orb--3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 40%;
    background: radial-gradient(circle, rgba(67, 56, 202, 0.08), transparent 70%);
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 20px) scale(0.95); }
}

/* Grid Pattern Overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-org-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    margin-bottom: 0;
}

.hero-org-badge img {
    height: 32px;
    width: auto;
}

.hero-org-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 99, 255, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

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

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

.hero h1 {
    color: var(--text-on-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 .highlight {
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent);
    border-radius: 3px;
    opacity: 0.6;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero .btn-primary {
    background: var(--bg-surface);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--text-on-primary);
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}


/* ============================================
   COUNTDOWN SECTION
   ============================================ */
.countdown-section {
    background: var(--gradient-primary);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.countdown-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.countdown-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.countdown-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-on-primary);
    margin-bottom: 32px;
}

.countdown-boxes {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    min-width: 100px;
    text-align: center;
    transition: transform var(--transition-base);
}

.countdown-box:hover {
    transform: translateY(-4px);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-on-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-unit {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-deadline-text {
    margin-top: 24px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.countdown-deadline-text strong {
    color: var(--text-on-primary);
}


/* ============================================
   ALUR / PROCESS SECTION
   ============================================ */
.alur-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--tag-bg);
    color: var(--tag-text);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Process Steps */
.alur-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.alur-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    position: relative;
}

.alur-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.alur-card .step-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--tag-bg);
    color: var(--tag-text);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.alur-card .step-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    background: var(--tag-bg);
    color: var(--accent);
}

.alur-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.alur-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.alur-card .step-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
}

/* Verification Result */
.verification-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.verify-card {
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.verify-card--success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(108, 99, 255, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.verify-card--fail {
    background: var(--bg-surface);
    border: 1px solid rgba(239, 68, 68, 0.2);
    text-align: center;
    flex-direction: column;
}

.verify-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.verify-icon--success {
    background: var(--success);
    color: white;
}

.verify-icon--fail {
    background: var(--danger);
    color: white;
}

/* Next Steps Grid */
.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.next-step-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    position: relative;
}

.next-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.next-step-card .step-num {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next-step-card .step-icon {
    width: 48px;
    height: 48px;
    margin: 12px auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
}

.next-step-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.next-step-card p {
    font-size: 0.8rem;
}


/* ============================================
   INFO / REQUIREMENTS SECTION
   ============================================ */
.info-section {
    padding: 80px 0;
    background: var(--bg-surface-alt);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.info-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-card h3 .icon {
    width: 40px;
    height: 40px;
    background: var(--tag-bg);
    color: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.info-card ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.7rem;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gradient-hero);
    padding: 48px 0 24px;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    height: 32px;
}

.footer-brand span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand a {
    font-weight: 700;
    color: var(--text-on-primary);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-on-primary);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-on-primary);
    transform: translateY(-2px);
}

/* Pill Instagram: ikon + handle dalam satu tautan rapi */
.footer-social a.footer-ig {
    width: auto;
    height: auto;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.footer-social a.footer-ig svg {
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}


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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.stagger-1 { transition-delay: 0.1s; }
.reveal.stagger-2 { transition-delay: 0.2s; }
.reveal.stagger-3 { transition-delay: 0.3s; }
.reveal.stagger-4 { transition-delay: 0.4s; }
.reveal.stagger-5 { transition-delay: 0.5s; }
.reveal.stagger-6 { transition-delay: 0.6s; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .alur-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .verification-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .section {
        padding: 60px 0;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .countdown-boxes {
        gap: 12px;
    }

    .countdown-box {
        min-width: 70px;
        padding: 16px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

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

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 40px 16px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .countdown-box {
        min-width: 60px;
        padding: 12px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Informasi & Sekretariat + Tanda Tangan
   ============================================ */
.signatory-row {
    margin-top: 48px;
    border-top: 1px solid rgba(45, 43, 127, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}
.signatory-sign { text-align: right; min-width: 250px; }
.sig-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.sig-org { font-size: 0.85rem; color: var(--text-muted); font-style: italic; margin-bottom: 4px; }
.sig-ttd { font-size: 0.8rem; color: var(--text-muted); }
.signatory-contact .sig-name { font-size: 1.05rem; font-weight: 700; color: var(--primary); }
.signatory-sign .sig-name { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-top: 4px; }
.sig-role { font-size: 0.8rem; color: var(--text-secondary); font-weight: 600; }
.signatory-row a { color: var(--accent); text-decoration: underline; }

/* Mobile: rata tengah + urutan dibalik (Ade Jona di atas, Kiky di bawah) */
@media (max-width: 768px) {
    .signatory-row {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .signatory-sign,
    .signatory-contact {
        text-align: center;
        min-width: 0;
        width: 100%;
    }
}
