/* --- 1. CORE VARIABLES & RESET --- */
:root {
    --font: "Segoe UI",SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif;
    --black: #1D1D1F;
    --grey: #6B6B6B;
    --light-bg: #fff; 
    --border: #EFEFEF;
    --accent: #1a8917;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body {
    margin: 0; padding: 0;
    font-family: var(--font);
    color: var(--black);
    line-height: 1.6;
    background: var(--light-bg);
    font-size: 1rem;
}

/* --- 2. LAYOUT & CONTAINER --- */
.container { 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* Navbar Global (Mapping ke .desktop-nav di HTML Boss) */
.desktop-nav {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    position: sticky; 
    top: 0; 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100% !important;
    padding: 0 5%;
}

/* --- 3. NAVIGATION & LANGUAGE SWITCHER --- */
.nav-links {
    list-style: none;
    margin: 0; padding: 0;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--grey);
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--black); font-weight: 700; }

.nav-actions { display: flex; align-items: center; gap: 15px; }

.language-switcher { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px; }
.language-switcher a { text-decoration: none; color: var(--grey); padding: 2px 4px; }
.language-switcher a.active { color: var(--black); border-bottom: 2px solid var(--accent); }
.language-switcher span { margin: 0 5px; color: var(--border); }

/* --- 4. SECTIONS (Hero, Content, Cards) --- */

.hero { padding: 60px 0; border-bottom: 1px solid var(--border); }
/*
.hero h1 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: #000; margin-bottom: 15px; font-weight: 700; }
.hero h2 { font-family: var(--font); font-size: 2.2rem; line-height: 1.15; margin: 0 0 20px 0; font-weight: 700; letter-spacing: -0.5px; }
.hero p { color: var(--black); margin-bottom: 30px; }
*/

.btn-primary, .btn-secondary { padding: 12px 24px; border-radius: 99px; text-decoration: none; font-weight: 500; font-size: 0.95rem; text-align: center; transition: 0.2s; }
.btn-secondary { border: 1px solid var(--border); color: var(--black); background: var(--border);}

.btn-primary {
    background: var(--black); 
    color: #fff !important;
    display: inline-block;
    padding: 16px 32px;
    border-radius: 99px;
    text-decoration: none;
    text-align: center;
    transition: 0.2s;
    line-height: 1.2;
}

.btn-primary-pro {
    background: #A4262C; 
    color: #ffffff !important;
    display: inline-block;
    padding: 16px 32px;
    border-radius: 99px;
    text-decoration: none;
    text-align: center;
    transition: 0.2s;
    line-height: 1.2;
}

/* Membedakan Manfaat */
.btn-label {
    display: block;
    font-size: 0.65rem; /* Lebih kecil */
    font-weight: 400;   /* Lebih tipis */
    opacity: 0.8;       /* Agak pudar */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}
/* Menonjolkan Nama Tool */
.btn-tool-name {
    display: block;
    font-size: 1rem;    /* Lebih besar */
    font-weight: 800;   /* Sangat tebal */
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #f2f2f2;
    color: #000 !important;
}

.btn-primary-pro:hover {
    background-color: #8E1F25;
    color: #ffffff !important;
}

section { padding: 60px 0; }
h3 { font-family: var(--font); font-size: 2.0rem; margin-bottom: 30px; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.content-body { font-family: var(--font);}
.content-body p { margin-bottom: 25px; }

.capability-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }

.card {
  padding: 24px;
  /*border: 1px solid #edebe9;*/ /* Warna border standar MS */
  border-radius: 10px; /* MS biasanya menggunakan radius 2px atau 4px (lebih kotak) */
  background: #ffffff;
  
  /* Fluent UI Shadow - Depth 4 */
  box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 
              0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
}

.card h4 { margin: 0 0 10px 0; font-size: 1.1rem; }

/* --- 5. FOOTER --- */
/*
footer { padding: 40px 0; border-top: 1px solid var(--border); background: #f2f2f2; }
footer .footer-links { margin: 15px 0; font-size: 0.9rem; color: var(--grey); }
footer .footer-links a { text-decoration: none; color: var(--grey); transition: color 0.2s ease; }
footer .footer-links a:hover { color: var(--black); text-decoration: underline; text-underline-offset: 4px; }
footer .footer-links span.divider { margin: 0 8px; }
*/
footer { 
    padding: 40px 0; 
    border-top: 1px solid var(--border); 
    background: #f2f2f2; 
    text-align: left; /* Memastikan semua elemen di dalam footer berada di tengah */
}

footer .footer-links { 
    margin: 15px 0; 
    font-size: 0.9rem; 
    color: var(--grey); 
    display: flex; /* Menggunakan flex agar perataan icon lebih presisi */
    flex-wrap: wrap; 
    justify-content: flex-start; /* Kunci rata kiri */
    align-items: center; /* Kunci agar icon dan teks sejajar secara vertikal */
    line-height: 1.5;
}

footer .footer-links a { 
    text-decoration: none; 
    color: var(--grey); 
    transition: color 0.2s ease; 
}

footer .footer-links a:hover { 
    color: var(--black); 
    text-decoration: underline; 
    text-underline-offset: 4px; 
}

footer .footer-links span.divider { 
    margin: 0 8px; 
}

/* Perbaikan Khusus untuk Logo X (Tanpa ubah HTML) */
footer .footer-links .footer-socials {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

/* --- 6. MOBILE DOCK --- */
.mobile-dock {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 400px; background: rgba(26, 26, 26, 0.98);
    display: flex; justify-content: space-around; padding: 12px 10px;
    border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.25); z-index: 9999;
}
.dock-item { text-decoration: none; color: #fff; display: flex; flex-direction: column; align-items: center; opacity: 0.5; transition: 0.3s; flex: 1; }
.dock-item.active { opacity: 1; }
.dock-icon { font-weight: 800; font-size: 0.95rem; margin-bottom: 2px; }
.dock-label { font-size: 0.6rem; text-transform: uppercase; font-weight: 600; }

/* --- 7. RESPONSIVE LOGIC --- */

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .nav-links { display: none !important; }
    body { padding-bottom: 90px !important; }
    .hero h2 { font-size: 2.0rem; }
    h3 { font-size: 1.7rem; }
    .logo a {  font-size: 1.25rem; }
 
    .logo .tagline {
        font-size: 7px !important;
    }
}

/* Desktop (>= 768px) */
@media (min-width: 768px) {
    .mobile-dock { display: none !important; }
    .nav-links { display: flex; }
    .hero { padding: 50px 0; }
    .hero h2 { font-size: 2.5rem; }
    .hero p { max-width: 90%; }
    .cta-buttons { flex-direction: row; }
    .capability-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 50px 0; }
    .logo a {  font-size: 1.5rem; }
}

/*--- CTA Button ---*/
.cta-buttons { display: flex; flex-direction: column; gap: 12px; }

/* Desktop (>= 768px) */
@media (min-width: 768px) {
    .cta-buttons { flex-direction: row; }
}

.copyright-footer {
    font-size: 0.8rem; 
    color: var(--grey); 
}

.copyright-footer a {
    text-decoration: none;
    color: inherit;
}

/* Table Styling */
/* Container styling */
.table-responsive {
    margin: 40px 0;
    overflow-x: auto;
    border-radius: 8px;
    background: #ffffff;
}

/* Base Table Styling */
.table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', -apple-system, sans-serif; /* Pastikan menggunakan font clean */
    font-size: 0.95rem;
    color: #333;
    text-align: left;
}

/*=== Header Styling ===*/
.table thead {
    background-color: #f8f9fa; /* Sangat soft */
    border-bottom: 1px solid #1a1a1a; /* Garis aksen tegas */
}

.table th {
    padding: 18px 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    font-size: 0.75rem;
    color: #1a1a1a;
    background: #fff;
}

/* Body Styling */
.table tbody tr {
    border-bottom: 1px solid #edf2f7;
    transition: background-color 0.2s ease;
}

/* Hover effect - subtle */
.table tbody tr:hover {
    background-color: #fcfcfc;
}

.table td {
    padding: 20px 24px;
    line-height: 1.6;
    vertical-align: top;
}

/* Column Specific Styling */
.table td:first-child {
    font-weight: 600;
    color: #1a1a1a;
    width: 20%; /* Memberikan struktur pada kolom Dimensi */
}

.table td:nth-child(2) {
    color: #4a5568; /* Grey yang lebih soft untuk Basis Regulasi */
    width: 35%;
}

.table td:last-child {
    color: #2d3748;
    width: 45%;
}

/* Responsive adjust */
@media (max-width: 768px) {
    .table {
        font-size: 0.85rem;
    }
    .table th, .table td {
        padding: 12px 16px;
    }
}

/* Note styling for table footnotes */
.note {
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: 12px;
  text-align: center;
  font-style: italic;
  background: #f9f9f9;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* Styling untuk container logo dan teks brand */
.logo {
    display: flex;           /* Mengaktifkan flexbox */    
    text-decoration: none;   /* Menghapus garis bawah dari link */
    color: inherit;         /* Mewarisi warna teks dari parent */
    letter-spacing: -0.05em;
    flex-direction: column;   /* penting: susun ke bawah */
    align-items: flex-start;  /* rata kiri */
}

/* Styling untuk gambar logo */
.logo img {
    height: 25px;           /* Atur tinggi gambar (sesuaikan) */
    width: auto;            /* Lebar menyesuaikan proporsi */
    display: block;         /* Menghilangkan spasi bawah gambar */
}

.logo a {
  font-family: 'Inter';
  color: #17417f;
  text-decoration: none;
  line-height: 1.1;
   display: block;
}

.logo a span {
  font-weight: 400; 
  opacity: 0.8; /* Opsional: agak pudar sedikit biar 'Talentiva' makin stand out */  
  color:#20B2E4;
}

.logo .tagline {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666;
    font-family: Arial;
}


/*==CTA Button Footer==*/
.cta-button-footer {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    color: inherit;
}

/* ===== Reset dasar untuk container ini saja ===== */
.biz-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    /*border-top: 1px solid #e0e0e0;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #222;*/
}

.biz-list li {
    padding: 12px 0;
    /*border-bottom: 1px solid #e0e0e0;*/
    font-weight: 500;
    text-align: left;
}

.biz-list li span {
    display: block;
    /*font-size: 0.875rem;*/
    font-weight: 400;
    /*color: #666;*/
    margin-top: 4px;
}

/*--Terms--*/
/* Container untuk daftar legal */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    counter-reset: legal-counter; /* Membuat penomoran otomatis yang elegan */
}

/* Setiap item dalam list */
.legal-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-main, #333);
    font-size: 1.05rem;
}

/* Penomoran custom (Bullet points diganti angka modern) */
.legal-list li::before {
    counter-increment: legal-counter;
    content: counter(legal-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background-color: var(--primary, #1a1a1a); /* Warna utama brand Boss */
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px; /* Sedikit rounded agar tidak kaku */
}

/* Efek hover untuk interaktivitas */
.legal-list li:hover {
    color: var(--primary);
    transition: color 0.3s ease;
}

/* Sub-list jika ada poin di dalam poin (nested list) */
.legal-list li ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.legal-list li ul li {
    padding-left: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.legal-list li ul li::before {
    content: none; /* Hilangkan angka untuk sub-list */
}

/*--list--*/
ul.legal-list-minimal {
    list-style-type: none; /* Menghilangkan bullet */
    padding: 0;            /* Rata kiri total */
    /*margin: 20px 0;*/
    margin-bottom: 20px;
}

ul.legal-list-minimal li {
    margin-bottom: 0.5rem; /* Jarak antar poin */
    line-height: 1.6;      /* Keterbacaan teks */
    text-align: left;      /* Paksa rata kiri */
    list-style: none;      /* Double check bullet hilang */
}

.non-list { list-style: none; margin: 0; padding: 0; }
ul.non-list li {
  position: relative;
  margin-bottom: 0.8em;
  /*padding-left: 1.25rem;*/
}


/* ================= HERO REVISED ================= */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f172a;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Desktop full background */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15,23,42,0.95) 0%,
        rgba(15,23,42,0.8) 40%,
        rgba(15,23,42,0.5) 70%,
        rgba(15,23,42,0.3) 100%
    );
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 720px;
    color: #ffffff;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.85;
}

/* ================= REVISI MOBILE (NO CROP & NO GAP) ================= */

@media (max-width: 768px) {
    .hero {
        display: block;      /* Ubah dari flex ke block agar elemen menumpuk alami */
        min-height: auto;    /* Lepaskan tinggi minimum agar tidak ada sisa ruang di bawah */
        background: #0f172a; /* Pastikan warna ini sama dengan warna header/background web */
        padding-top: 0;      /* Pastikan tidak ada jarak ke header */
    }

    .hero-media {
        position: relative;  /* Bukan absolute, supaya dia mengambil ruang yang semestinya */
        width: 100%;
        line-height: 0;      /* Menghilangkan gap kecil di bawah image akibat inline spacing */
    }

    .hero-media img {
        width: 100%;
        height: auto;        /* Gambar akan menyesuaikan tinggi aslinya (fit) */
        display: block;
        object-fit: contain; /* Memastikan tidak ada bagian yang terpotong */
    }

    .hero-overlay {
        /* Jika ingin overlay tetap ada di atas gambar yang 'fit' */
        position: absolute;
        inset: 0;
        display: block;
        background: linear-gradient(
            to bottom,
            rgba(15,23,42,0.4) 0%,
            transparent 30%,
            transparent 70%,
            rgba(15,23,42,1) 100% /* Fade out ke bawah agar menyatu dengan konten teks */
        );
    }

    .hero-content {
        position: relative;
        padding: 30px 20px 60px; /* Jarak teks di bawah gambar */
        text-align: center;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-top: 10px;
    }
}

/* ========================= */
/* Container Utama CTA */
.cta-assessment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 280px;
  padding: 12px 24px;
  
  /* Microsoft Fluent Brand Colors */
  background: #00A4EF;
  color: #FFFFFF;
  
  /* Typography - Microsoft’s preferred font stack */
  font-family: 'Segoe UI', 'Segoe UI Variable', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  
  /* Microsoft style - softer rounded corners */
  border-radius: 10px;
  border: none;
  
  /* Fluent Design: subtle elevation */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  
  /* Smooth transitions */
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  text-decoration: none;
}

/* Hover state - Microsoft style: lighten + subtle scale */
.cta-assessment:hover {
  background: #2B8FC4;  /* Darker variant of #00A4EF */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transform: scale(1.02);
}

/* Active/pressed state */
.cta-assessment:active {
  background: #1E7BA8;
  transform: scale(0.98);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Focus state - Microsoft’s high visibility focus ring */
.cta-assessment:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 4px #00A4EF;
  border-radius: 8px;
}

/* Label Kecil di Atas */
.cta-assessment .label-top {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF; /* Slate 400 */
    margin-bottom: 4px;
    display: block;
    transition: color 0.3s ease;
}

/* Judul Utama */
.cta-assessment .tool-name {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Icon Panah */
.cta-assessment .arrow {
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

/* Icon Panah */
.cta-assessment .arrow:hover {
    color: yellow !important;
    transform: translateX(2px);
}

.cta-assessment:hover .arrow {
    color: yellow !important;
    transform: translateX(5px); /* Panah bergeser ke kanan */
}

/* Efek Klik (Active) */
.cta-assessment:active {
    transform: translateY(0);
}

.contact-meta {
    margin: 2rem 0;
    border-left: 2px solid #334155; /* Slate 700 sebagai aksen vertikal */
    padding-left: 20px;
}

.meta-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8; /* Slate 400 */
    margin-bottom: 4px;
}

.meta-email {
    display: inline-block;
    font-family: var(--font-mono, monospace); /* Font mono memberikan kesan teknis/pro */
    font-size: 1.1rem;
    color: #17417f;
    text-decoration: none;
    transition: color 0.2s ease;
}

.meta-email:hover {
    color: #38bdf8; /* Sky Blue */
}

.faq-item h3 {
    font-size: 1rem;
    padding-bottom: 0;
    margin-bottom: 0;
}


/* Styling Blockquote agar terlihat seperti Insight Strategis */
blockquote {
    margin: 40px 0;
    padding: 25px 30px;
    background-color: #f8faff; /* Biru sangat muda yang profesional */
    border-left: 4px solid #007bff; /* Garis aksen biru utama */
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    position: relative;
}

blockquote a {
    color: #007bff;
    text-decoration: underline;
    font-weight: 600;
}

/*--X--*/
.footer-socials {
    display: inline-flex;
    vertical-align: middle; /* Menjaga div tetap satu baris dengan teks */
}

.tl-tech-footer-v2 {
    margin-top: 50px;
    color: #555;
    border-top: 1px solid #1D1D1F;
    text-align: left; /* Unik dan modern */
}

.tl-tech-footer-v2 p {
    font-family: 'Arial';
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #555;
    margin-bottom: 5px;
}

.tl-brand-line {
    font-size: 1.0rem;
    letter-spacing: -0.5px;
}

.tl-brand-line strong {
    color: #555; /* Biru Vercel/Next.js style */
    font-weight: 800;
}

.medium-line {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    margin: 2.5rem auto;
    width: 100px; /* Garis sangat pendek di tengah */
}

.article-footer-nav {
  margin-top: 60px;
}

.article-footer-nav strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.article-footer-nav a {
  font-size: 0.95rem;
  text-decoration: none;
  color: #111827;
  transition: color 0.2s ease;
}

.article-footer-nav a:hover {
  color: #2563eb;
}

.home-research {
  padding: 80px 0;
}

.home-research h2 {
  margin-bottom: 10px;
}

.section-intro {
  color: #6b7280;
  margin-bottom: 40px;
  max-width: 700px;
}

.featured-article h3 a {
  text-decoration: none;
  color: #111827;
}

.featured-article h3 a:hover {
  text-decoration: underline;
}

.view-all {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #2563eb;
}

/*---footer-new---*/
/* Layout Utama Footer */
footer {
    background-color: #fff; /* Atau sesuaikan dengan tema Boss */
    padding: 60px 0 20px 0;
    border-top: 1px solid #eaeaea;
    color: var(--grey);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left; /* Jamin semua rata kiri */
}

/* Kolom 1: About */
.footer-about .logo { margin-bottom: 15px; }
.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 320px;
}

/* Typography Kolom 2 & 3 */
footer h4 {
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--grey);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--black);
    text-decoration: underline;
}

/* Copyright Bottom */
.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #f5f5f5;
    text-align: left;
}

.copyright-footer { font-size: 0.8rem; }

/* Responsive Mobile */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* Jadi 2 kolom di tablet */
    }
    .footer-about { grid-column: span 2; } /* About ambil full lebar di tablet */
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Stack 1 kolom di HP */
        gap: 30px;
    }
    .footer-about { grid-column: span 1; }
    footer { padding: 40px 0 20px 0; }
}


/*---Social Icons--*/
.footer-social-wrapper {
    display: flex;
    flex-direction: row; /* Memastikan sejajar dalam satu baris */
    align-items: center; /* Sejajar secara vertikal */
    gap: 12px;           /* Jarak antar elemen */
    margin-top: 5px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
    color: var(--black);
    transform: translateY(-2px); /* Efek angkat halus saat hover */
}

.social-link svg {
    width: 20px; /* Ukuran proporsional untuk single row */
    height: 20px;
    display: block;
}

/* Penyesuaian khusus ikon Instagram stroke */
.social-link svg[fill="none"] {
    fill: none;
}

/*-- hero-eyebrow: premium label mode untuk dark bg --*/
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    
    /* Warna aksen Anda: Dibuat sedikit lebih vibrant agar tidak 'tenggelam' */
    color: #FF5A2D; 
    font-weight: 600;
    
    margin-bottom: 24px;
    padding: 6px 14px;
    
    /* Efek Glassmorphism: Memberikan dimensi pada background gelap */
    /* background: rgba(201, 66, 31, 0.12); */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    
    /* Border halus dengan warna senada */
    /* border: 1px solid rgba(201, 66, 31, 0.35); */
    /* border-radius: 4px; Sudut sedikit rounded ala Microsoft Fluent */
    
    /* Memastikan elemen tidak terlihat seperti button (non-clickable) */
    pointer-events: none;
    user-select: none;
    
    /* Bayangan tipis untuk kedalaman */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
}

.hero-eyebrow::before {
    content: '';
    width: 6px; 
    height: 6px;
    background: #C9421F;
    border-radius: 50%;
    display: inline-block;
    
    /* Animasi blink yang lebih halus */
    animation: pulse-red 2s infinite;
    /* Glow pada dot */
    box-shadow: 0 0 10px rgba(201, 66, 31, 0.8);
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201, 66, 31, 0.7);
        opacity: 0.8;
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(201, 66, 31, 0);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201, 66, 31, 0);
        opacity: 0.8;
    }
}
/* =============================================
   HERO V2 — 2-column layout with output panel
   Fully namespaced, does not affect other pages
   ============================================= */

.hero-v2 {
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.hero-v2-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 24px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Left: copy */
.hero-v2-left h1 {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.5px;
    color: var(--black);
    margin: 0 0 18px 0;
}

.hero-v2-left h1 em {
    font-style: italic;
    color: #1A3C6E;
}

.hero-v2-sub {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.7;
    margin: 0 0 28px 0;
    font-weight: 400;
}

.hero-v2-proof {
    font-size: 10px;
    letter-spacing: 0.5px;
    color: #333;
    margin: 20px 0 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-v2-proof::before {
    content: '';
    width: 20px;
    height: 1px;
    background: #ccc;
    flex-shrink: 0;
}

/* Right: output panel */
.hero-v2-panel {
    background: #F5F5F7;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #E8E8E8;
}

.panel-header-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
    font-family: monospace;
}

.panel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #E8E8E8;
}

.panel-row-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #444;
    font-family: monospace;
}

.panel-row-val {
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    text-align: right;
}

.val-high { color: #E05A3A; }
.val-med  { color: #E8A94C; }
.val-num  { color: var(--black); }

.panel-footer-box {
    margin-top: 18px;
    padding: 14px;
    background: #EEECE7;
    border-radius: 4px;
}

.panel-footer-label {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 6px;
    font-family: monospace;
}

.panel-footer-text {
    font-size: 12px;
    line-height: 1.55;
    font-family: 'Lora', Georgia, serif;
    color: #333;
}

/* Audience bar */
.hero-v2-aud {
    /* background: #2A2D32; */
    padding: 13px 24px;
}

.hero-v2-aud-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.aud-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 9.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    /* color: rgba(255,255,255,0.5); */
    font-family: monospace;
}

.aud-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #B08A3E;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 860px) {
    .hero-v2-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 20px 40px;
    }
}

@media (max-width: 600px) {
    .hero-v2-aud-inner {
        gap: 20px;
    }
    .aud-item {
        font-size: 8.5px;
    }
}

.stay-updated {
    font-size: 0.5rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    white-space: nowrap; /* Mencegah teks terputus menjadi dua baris */
    margin-right: 4px;   /* Jarak tambahan antara teks dan logo pertama */
    font-style: italic;
}

.social-icons a {
    display: inline-block;
    margin: 0 8px;
}


.pse-registration {
    font-size: 0.85rem;          /* Sangat kecil namun tetap legible */
    color: var(--grey);      /* Gunakan warna abu-abu agar low-profile */
    opacity: 0.75;            /* Memberikan kesan 'muted' */
    /*margin-top: 15px;*/        /* Jarak dari baris logo di atasnya */
    letter-spacing: 0.3px;
    font-family: inherit;    /* Memastikan font konsisten dengan body */
    text-transform: none;    /* Tetap natural untuk nomor registrasi resmi */
    /*border-top: 1px solid rgba(0,0,0,0.05);*/ /* Garis pemisah yang sangat tipis */
    /*padding-top: 10px;*/       /* Ruang napas setelah garis */
    width: 100%;             /* Memastikan garis pemisah memanjang */
}

/* Responsif: Jika di mobile ingin rata tengah, jika desktop tetap rata kiri */
@media (max-width: 768px) {
    .pse-registration {
        text-align: center;
    }
}

.pse-registration a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted var(--color-muted, #6b7280);
  transition: color 0.2s ease;
}