/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../webfonts/inter-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../webfonts/inter-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../webfonts/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/inter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('../webfonts/inter-v20-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}




        :root { 
            /* Internet "Global Net" Palette */
            --net-primary: #0066FF; /* Electric Blue */
            --net-dark: #0047b3;
            --net-cyan: #00DDEB;    /* Cyber Cyan */
            --net-bg: #f0f7ff;
            
            --net-gradient: linear-gradient(135deg, #0066FF 0%, #00DDEB 100%);
            
            --card-shadow: 0 8px 24px rgba(0, 102, 255, 0.06);
            --card-hover-shadow: 0 16px 32px rgba(0, 102, 255, 0.12);
            --border-color: #e0eaff;
        }
        
        body { 
            font-family: 'Inter', -apple-system, sans-serif; 
            background-color: #fff; 
            color: #1e293b; 
            -webkit-font-smoothing: antialiased;
            margin: 0; padding: 0;
        }
        a { text-decoration: none; transition: 0.2s; }
        
        h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.5px; }

        /* === 1. Hero & AI Search (Tech Style) === */
        .hero-section { 
            padding: 60px 0 50px; 
            background: radial-gradient(circle at top, rgba(0, 221, 235, 0.05), transparent 60%);
            position: relative; overflow: hidden;
        }
        /* Background Grid Decoration */
        .hero-section::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-image: radial-gradient(#0066ff 0.5px, transparent 0.5px);
            background-size: 30px 30px; opacity: 0.05; pointer-events: none;
        }
        
        .hero-title { color: #0f172a; }
        .hero-subtitle { font-size: 1.1rem; line-height: 1.6; color: #64748b; font-family: 'Inter', sans-serif; }
        
        /* AI Box Enhanced */
        .ai-search-wrapper { position: relative; max-width: 720px; margin: 40px auto; }
        .ai-label-float {
            position: absolute; top: -12px; left: 25px; background: var(--net-primary); color: #fff;
            font-size: 0.75rem; padding: 2px 12px; border-radius: 20px; font-weight: 600; z-index: 2;
            box-shadow: 0 4px 10px rgba(0, 102, 255, 0.3); font-family: 'Inter', sans-serif;
        }

        .ai-search-box { 
            padding: 15px 15px 15px 20px;
            background: #fff; border: 2px solid #e0eaff; border-radius: 24px;
            display: flex; flex-direction: column; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
            transition: all 0.3s ease; position: relative; z-index: 1;
        }
        .ai-search-box:focus-within {
            border-color: var(--net-primary);
            box-shadow: 0 25px 50px -12px rgba(0, 102, 255, 0.15);
            transform: translateY(-2px);
        }
        
        .ai-input-area { display: flex; align-items: flex-start; width: 100%; }
        .ai-textarea {
            flex-grow: 1; border: none; resize: none; outline: none;
            font-family: 'Inter', sans-serif; font-size: 1.05rem; color: #1e293b;
            min-height: 28px; max-height: 200px; overflow-y: hidden;
            padding: 5px 10px; background: transparent; line-height: 1.5;
        }
        .ai-textarea::placeholder { color: #94a3b8; opacity: 0.8; font-style: italic; }

        .search-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 5px; border-top: 1px dashed #e0eaff; }
        .char-count { font-size: 0.75rem; color: #64748b; }
        .char-count.limit-reached { color: #dc2626; }

        .ai-search-badge {
            background: var(--net-gradient); color: #fff;
            font-weight: 600; padding: 8px 24px; border-radius: 50px;
            cursor: pointer; transition: 0.2s; border: none; font-family: 'Inter', sans-serif;
            display: flex; align-items: center; gap: 8px; font-size: 0.9rem;
        }
        .ai-search-badge:hover:not(:disabled) { opacity: 0.9; box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3); transform: translateY(-1px); }
        .ai-search-badge:disabled { opacity: 0.7; cursor: not-allowed; }

        #ai-result-box { margin-top: 15px; padding: 20px; background: #fff; border-top: 1px solid #e0eaff; display: none; text-align: left; animation: fadeIn 0.3s ease; }
        @keyframes fadeIn { from{opacity:0;} to{opacity:1;} }

        /* === 2. Quick Tools === */
        .tool-grid { 
            display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-bottom: 60px; 
        }
        .tool-item { 
            text-align: center; padding: 20px 10px; border-radius: 16px; 
            background: #fff; border: 1px solid var(--border-color); 
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none; color: inherit; height: 100%;
            display: flex; flex-direction: column; align-items: center;
        }
        .tool-item:hover { 
            border-color: var(--net-primary); 
            box-shadow: var(--card-hover-shadow); 
            transform: translateY(-5px); background: #fcfdff;
        }
        
        .tool-icon-wrapper {
            width: 45px; height: 45px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 12px; background: #eef6ff;
            margin-bottom: 12px; transition: 0.2s; color: var(--net-primary);
        }
        .tool-item:hover .tool-icon-wrapper { background: var(--net-primary); color: #fff; }
        
        .tool-item i { font-size: 1.2rem; }
        .tool-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; color: #1e293b; font-family: 'Inter', sans-serif; }
        .tool-item p { font-size: 0.75rem; color: #64748b; margin: 0; line-height: 1.3; font-family: 'Inter', sans-serif; }

        /* === 3. Newsletter Section === */
        .newsletter-section { 
            background: var(--net-bg); padding: 80px 0; 
            border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); 
        }
        .newsletter-card {
            background: #fff; padding: 50px; border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.03); 
            border: 1px solid var(--border-color);
            display: flex; flex-direction: column; align-items: center; text-align: center;
            position: relative; overflow: hidden;
        }
        .newsletter-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px;
            background: var(--net-gradient);
        }
        .newsletter-icon {
            width: 70px; height: 70px; background: #e0f7fa; 
            border-radius: 50%; color: var(--net-cyan);
            display: flex; align-items: center; justify-content: center;
            font-size: 2rem; margin-bottom: 25px;
        }
        .newsletter-form {
            display: flex; gap: 10px; max-width: 500px; width: 100%; margin-top: 30px;
        }
        .newsletter-input {
            flex: 1; padding: 15px 20px; border: 2px solid #e2e8f0; border-radius: 12px;
            outline: none; transition: 0.3s; font-family: 'Inter', sans-serif;
        }
        .newsletter-input:focus { border-color: var(--net-primary); }
        .newsletter-btn {
            background: var(--net-dark); color: #fff; padding: 15px 30px; 
            border: none; border-radius: 12px; font-weight: 600; cursor: pointer;
            transition: 0.3s; white-space: nowrap; display: flex; align-items: center; justify-content: center; gap: 8px;
        }
        .newsletter-btn:hover:not(:disabled) { background: var(--net-primary); transform: translateY(-2px); }
        .newsletter-btn:disabled { background: #94a3b8; cursor: not-allowed; }
        .newsletter-disclaimer { font-size: 0.75rem; color: #94a3b8; margin-top: 15px; }

        /* === 4. Editor's Picks === */
        .picks-section { padding: 80px 0; background: #fff; }
        .section-header { position: relative; display: inline-block; margin-bottom: 40px; }
        .section-header::after {
            content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
            width: 50px; height: 3px; background: var(--net-gradient); border-radius: 3px;
        }
        
        .pick-card { 
            border-radius: 16px; border: 1px solid var(--border-color); padding: 30px; 
            height: 100%; transition: 0.3s; background: #fff;
        }
        .pick-card:hover { transform: translateY(-5px); box-shadow: var(--card-hover-shadow); border-color: var(--net-cyan); }
        
        .pick-tag { 
            font-size: 0.7rem; font-weight: 700; text-transform: uppercase; 
            letter-spacing: 0.5px; margin-bottom: 20px; display: inline-flex; 
            align-items: center; gap: 8px; padding: 6px 12px; border-radius: 50px; font-family: 'Inter', sans-serif;
        }
        
        .card-problem .pick-tag { background: #ffe4e6; color: #e11d48; }
        .card-tips .pick-tag { background: #dcfce7; color: #16a34a; }
        .card-insight .pick-tag { background: #e0f2fe; color: var(--net-primary); }

        .pick-list { list-style: none; padding: 0; margin: 0; counter-reset: pick-counter; }
        .pick-list li { 
            position: relative; padding-left: 30px; margin-bottom: 12px; 
            padding-bottom: 12px; border-bottom: 1px solid #f1f5f9; 
        }
        .pick-list li::before {
            counter-increment: pick-counter;
            content: "\f0c1"; /* Link Icon */
            font-family: 'Font Awesome 6 Free'; font-weight: 900;
            position: absolute; left: 0; top: 2px; 
            color: #cbd5e1; font-size: 0.8rem;
        }
        .pick-list li:hover::before { color: var(--net-primary); }
        .pick-list li:last-child { border: none; padding-bottom: 0; margin: 0; }
        
        .pick-list a { 
            color: #1e293b; font-weight: 500; text-decoration: none; 
            transition: 0.2s; display: block; line-height: 1.4;
        }
        .pick-list a:hover { color: var(--net-primary); }

        /* === 5. Ajax List === */
        .article-row { 
            padding: 18px 20px; 
            border: 1px solid transparent; 
            border-bottom: 1px solid #f1f5f9; 
            display: flex; justify-content: space-between; align-items: center; 
            text-decoration: none; border-radius: 12px; 
            transition: all 0.2s ease;
        }
        .article-row:hover { background: #f8fafc; border-color: #e2e8f0; }
        
        .article-row .title { 
            font-weight: 600; color: #1e293b; font-size: 1.05rem; padding-right: 20px;
        }
        .article-row:hover .title { color: var(--net-primary); }
        
        .article-row .meta-right {
            min-width: 140px; text-align: right; flex-shrink: 0;
            display: flex; align-items: center; justify-content: flex-end; gap: 15px;
        }
        
        .article-row .date { font-size: 0.85rem; color: #94a3b8; font-weight: 500; white-space: nowrap; }
        .article-row i.fa-chevron-right { opacity: 0; transition: 0.2s; transform: translateX(-10px); color: var(--net-cyan); }
        .article-row:hover i.fa-chevron-right { opacity: 1; transform: translateX(0); }

        #btn-load-more {
            transition: 0.3s; font-weight: 600;
            box-shadow: 0 4px 10px rgba(0, 102, 255, 0.2);
            background: var(--net-primary); border: none;
        }
        #btn-load-more:hover {
            transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
            background: var(--net-dark);
        }

        /* Responsive */
        @media (max-width: 992px) { 
            .tool-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } 
            .hero-section { padding: 40px 0; }
            .ai-search-box { border-radius: 20px; padding: 15px; }
            .search-footer { flex-direction: column-reverse; gap: 10px; align-items: stretch; }
            .char-count { margin-left: 0; text-align: right; margin-bottom: 5px; }
            .ai-search-badge { justify-content: center; }
            .newsletter-form { flex-direction: column; }
            .newsletter-btn { width: 100%; }
        }
    
           /* Kelas baru: misal namanya .link-panah */
.link-panah {
  text-decoration: none;
  color: #008f68; /* Warna teks hijau gelap */
  font-weight: 700;
  position: relative;
  /* Garis bawah default agar orang tahu ini link */
  border-bottom: 3px solid rgba(0, 143, 104, 0.3); 
  transition: color 0.3s ease-in-out;
  display: inline-block; /* Supaya rapi dengan ikon */
}

/* 1. BAGIAN IKON (Memakai ::before) */
.link-panah::before {
  content: '→'; /* Bisa ganti dengan '👉' atau '🔗' */
  margin-right: 5px; /* Jarak antara ikon dan teks */
  display: inline-block;
  transition: transform 0.3s ease; /* Animasi gerak ikon */
}

/* 2. BAGIAN BACKGROUND HOVER (Memakai ::after) */
.link-panah::after {
  content: '';
  background-color: rgba(0, 143, 104, 0.2); /* Warna background saat hover (transparan) */
  position: absolute;
  left: 0;
  bottom: 0; /* Mulai dari paling bawah */
  width: 100%;
  height: 0%; /* Awalnya 0, tidak terlihat */
  z-index: -1; /* Di belakang teks */
  transition: all 0.3s ease-in-out;
}

/* EFEK SAAT MOUSE DI-HOVER */
.link-panah:hover {
  color: #004d38; /* Warna teks jadi lebih gelap saat hover */
}

.link-panah:hover::before {
  transform: translateX(5px); /* Ikon panah maju sedikit ke kanan */
}

.link-panah:hover::after {
  height: 100%; /* Background naik memenuhi teks */
}